Thanks for using Compiler Explorer
Sponsors
Jakt
C++
Ada
Analysis
Android Java
Android Kotlin
Assembly
C
C3
Carbon
C++ (Circle)
CIRCT
Clean
CMake
CMakeScript
COBOL
C++ for OpenCL
MLIR
Cppx
Cppx-Blue
Cppx-Gold
Cpp2-cppfront
Crystal
C#
CUDA C++
D
Dart
Elixir
Erlang
Fortran
F#
GLSL
Go
Haskell
HLSL
Hook
Hylo
IL
ispc
Java
Julia
Kotlin
LLVM IR
LLVM MIR
Modula-2
Nim
Objective-C
Objective-C++
OCaml
Odin
OpenCL C
Pascal
Pony
Python
Racket
Ruby
Rust
Snowball
Scala
Slang
Solidity
Spice
SPIR-V
Swift
LLVM TableGen
Toit
TypeScript Native
V
Vala
Visual Basic
Vyper
WASM
Zig
Javascript
GIMPLE
Ygen
rust source #1
Output
Compile to binary object
Link to binary
Execute the code
Intel asm syntax
Demangle identifiers
Verbose demangling
Filters
Unused labels
Library functions
Directives
Comments
Horizontal whitespace
Debug intrinsics
Compiler
mrustc (master)
rustc 1.0.0
rustc 1.1.0
rustc 1.10.0
rustc 1.11.0
rustc 1.12.0
rustc 1.13.0
rustc 1.14.0
rustc 1.15.1
rustc 1.16.0
rustc 1.17.0
rustc 1.18.0
rustc 1.19.0
rustc 1.2.0
rustc 1.20.0
rustc 1.21.0
rustc 1.22.0
rustc 1.23.0
rustc 1.24.0
rustc 1.25.0
rustc 1.26.0
rustc 1.27.0
rustc 1.27.1
rustc 1.28.0
rustc 1.29.0
rustc 1.3.0
rustc 1.30.0
rustc 1.31.0
rustc 1.32.0
rustc 1.33.0
rustc 1.34.0
rustc 1.35.0
rustc 1.36.0
rustc 1.37.0
rustc 1.38.0
rustc 1.39.0
rustc 1.4.0
rustc 1.40.0
rustc 1.41.0
rustc 1.42.0
rustc 1.43.0
rustc 1.44.0
rustc 1.45.0
rustc 1.45.2
rustc 1.46.0
rustc 1.47.0
rustc 1.48.0
rustc 1.49.0
rustc 1.5.0
rustc 1.50.0
rustc 1.51.0
rustc 1.52.0
rustc 1.53.0
rustc 1.54.0
rustc 1.55.0
rustc 1.56.0
rustc 1.57.0
rustc 1.58.0
rustc 1.59.0
rustc 1.6.0
rustc 1.60.0
rustc 1.61.0
rustc 1.62.0
rustc 1.63.0
rustc 1.64.0
rustc 1.65.0
rustc 1.66.0
rustc 1.67.0
rustc 1.68.0
rustc 1.69.0
rustc 1.7.0
rustc 1.70.0
rustc 1.71.0
rustc 1.72.0
rustc 1.73.0
rustc 1.74.0
rustc 1.75.0
rustc 1.76.0
rustc 1.77.0
rustc 1.78.0
rustc 1.79.0
rustc 1.8.0
rustc 1.80.0
rustc 1.81.0
rustc 1.82.0
rustc 1.83.0
rustc 1.9.0
rustc beta
rustc nightly
rustc-cg-gcc (master)
x86-64 GCCRS (GCC master)
x86-64 GCCRS (GCCRS master)
x86-64 GCCRS 14.1 (GCC)
x86-64 GCCRS 14.2 (GCC)
Options
Source code
#[derive(Debug, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum JsNativeErrorKind { /// A collection of errors wrapped in a single error. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-aggregate-error-objects /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError Aggregate(Vec<[u8; 7]>), /// A generic error. Commonly used as the base for custom exceptions. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-error-constructor /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error Error, /// An error related to the global function [`eval()`][eval]. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-evalerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError /// [eval]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval Eval, /// An error thrown when a value is outside its valid range. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-rangeerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError Range, /// An error representing an invalid de-reference of a variable. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-referenceerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError Reference, /// An error representing an invalid syntax in the Javascript language. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-syntaxerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError Syntax, /// An error thrown when a variable or argument is not of a valid type. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-typeerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError Type, /// An error thrown when the [`encodeURI()`][e_uri] and [`decodeURI()`][d_uri] functions receive /// invalid parameters. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-urierror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError /// [e_uri]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI /// [d_uri]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURI Uri, /// Error thrown when a runtime limit is exceeded. It's not a valid JS error variant. RuntimeLimit, } pub struct JsNativeError { /// The kind of native error (e.g. `TypeError`, `SyntaxError`, etc.) pub kind: JsNativeErrorKind, message: Box<str>, cause: Option<Box<[u8; 7]>>, realm: Option<Box<u8>>, } const fn new_str() -> Box<str> { // SAFETY: miri safe and works in stable unsafe { std::mem::transmute("") } } impl JsNativeError { /// Default `AggregateError` kind `JsNativeError`. // pub const AGGREGATE: Self = Self::aggregate(Vec::new()); // /// Default `Error` kind `JsNativeError`. // pub const ERROR: Self = Self::error(); // /// Default `EvalError` kind `JsNativeError`. // pub const EVAL: Self = Self::eval(); // /// Default `RangeError` kind `JsNativeError`. // pub const RANGE: Self = Self::range(); // /// Default `ReferenceError` kind `JsNativeError`. // pub const REFERENCE: Self = Self::reference(); // /// Default `SyntaxError` kind `JsNativeError`. // pub const SYNTAX: Self = Self::syntax(); // /// Default `error` kind `JsNativeError`. // pub const TYP: Self = Self::typ(); // /// Default `UriError` kind `JsNativeError`. // pub const URI: Self = Self::uri(); // #[cfg(feature = "fuzz")] // /// Default `NoInstructionsRemain` kind `JsNativeError`. // pub const IS_NO_INSTRUCTIONS_REMAIN: Self = Self::is_no_instructions_remain(); // /// Default `error` kind `JsNativeError`. // pub const RUNTIME_LIMIT: Self = Self::runtime_limit(); /// Creates a new `JsNativeError` from its `kind`, `message` and (optionally) its `cause`. const fn new(kind: JsNativeErrorKind, message: Box<str>, cause: Option<Box<[u8; 7]>>) -> Self { Self { kind, message, cause, realm: None, } } /// Creates a new `JsNativeError` of kind `AggregateError` from a list of [`JsError`]s, with /// empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let inner_errors = vec![ /// JsNativeError::typ().into(), /// JsNativeError::syntax().into() /// ]; /// let error = JsNativeError::aggregate(inner_errors); /// /// assert!(matches!( /// error.kind, /// JsNativeErrorKind::Aggregate(ref errors) if errors.len() == 2 /// )); /// ``` #[must_use] #[inline] pub const fn aggregate(errors: Vec<[u8; 7]>) -> Self { Self::new(JsNativeErrorKind::Aggregate(errors), new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Aggregate`]. #[must_use] #[inline] pub const fn is_aggregate(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Aggregate(_)) } /// Creates a new `JsNativeError` of kind `Error`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::error(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Error)); /// ``` #[must_use] #[inline] pub const fn error() -> Self { Self::new(JsNativeErrorKind::Error, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Error`]. #[must_use] #[inline] pub const fn is_error(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Error) } /// Creates a new `JsNativeError` of kind `EvalError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::eval(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Eval)); /// ``` #[must_use] #[inline] pub const fn eval() -> Self { Self::new(JsNativeErrorKind::Eval, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Eval`]. #[must_use] #[inline] pub const fn is_eval(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Eval) } /// Creates a new `JsNativeError` of kind `RangeError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::range(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Range)); /// ``` #[must_use] #[inline] pub const fn range() -> Self { Self::new(JsNativeErrorKind::Range, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Range`]. #[must_use] #[inline] pub const fn is_range(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Range) } /// Creates a new `JsNativeError` of kind `ReferenceError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::reference(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Reference)); /// ``` #[must_use] #[inline] pub const fn reference() -> Self { Self::new(JsNativeErrorKind::Reference, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Reference`]. #[must_use] #[inline] pub const fn is_reference(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Reference) } /// Creates a new `JsNativeError` of kind `SyntaxError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::syntax(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Syntax)); /// ``` #[must_use] #[inline] pub const fn syntax() -> Self { Self::new(JsNativeErrorKind::Syntax, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Syntax`]. #[must_use] #[inline] pub const fn is_syntax(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Syntax) } /// Creates a new `JsNativeError` of kind `TypeError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::typ(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Type)); /// ``` #[must_use] #[inline] pub const fn typ() -> Self { Self::new(JsNativeErrorKind::Type, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Type`]. #[must_use] #[inline] pub const fn is_type(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Type) } /// Creates a new `JsNativeError` of kind `UriError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::uri(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Uri)); /// ``` #[must_use] #[inline] pub const fn uri() -> Self { Self::new(JsNativeErrorKind::Uri, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Uri`]. #[must_use] #[inline] pub const fn is_uri(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Uri) } /// Creates a new `JsNativeError` that indicates that the context exceeded the runtime limits. #[must_use] #[inline] pub const fn runtime_limit() -> Self { Self::new(JsNativeErrorKind::RuntimeLimit, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::RuntimeLimit`]. #[must_use] #[inline] pub const fn is_runtime_limit(&self) -> bool { matches!(self.kind, JsNativeErrorKind::RuntimeLimit) } #[must_use] #[inline] pub fn with_message<S>(mut self, message: S) -> Self where S: Into<Box<str>>, { self.message = message.into(); self } } #[no_mangle] pub fn const_consturctor(s: String) -> JsNativeError { const { JsNativeError::error() }.with_message(s) }
rust source #2
Output
Compile to binary object
Link to binary
Execute the code
Intel asm syntax
Demangle identifiers
Verbose demangling
Filters
Unused labels
Library functions
Directives
Comments
Horizontal whitespace
Debug intrinsics
Compiler
mrustc (master)
rustc 1.0.0
rustc 1.1.0
rustc 1.10.0
rustc 1.11.0
rustc 1.12.0
rustc 1.13.0
rustc 1.14.0
rustc 1.15.1
rustc 1.16.0
rustc 1.17.0
rustc 1.18.0
rustc 1.19.0
rustc 1.2.0
rustc 1.20.0
rustc 1.21.0
rustc 1.22.0
rustc 1.23.0
rustc 1.24.0
rustc 1.25.0
rustc 1.26.0
rustc 1.27.0
rustc 1.27.1
rustc 1.28.0
rustc 1.29.0
rustc 1.3.0
rustc 1.30.0
rustc 1.31.0
rustc 1.32.0
rustc 1.33.0
rustc 1.34.0
rustc 1.35.0
rustc 1.36.0
rustc 1.37.0
rustc 1.38.0
rustc 1.39.0
rustc 1.4.0
rustc 1.40.0
rustc 1.41.0
rustc 1.42.0
rustc 1.43.0
rustc 1.44.0
rustc 1.45.0
rustc 1.45.2
rustc 1.46.0
rustc 1.47.0
rustc 1.48.0
rustc 1.49.0
rustc 1.5.0
rustc 1.50.0
rustc 1.51.0
rustc 1.52.0
rustc 1.53.0
rustc 1.54.0
rustc 1.55.0
rustc 1.56.0
rustc 1.57.0
rustc 1.58.0
rustc 1.59.0
rustc 1.6.0
rustc 1.60.0
rustc 1.61.0
rustc 1.62.0
rustc 1.63.0
rustc 1.64.0
rustc 1.65.0
rustc 1.66.0
rustc 1.67.0
rustc 1.68.0
rustc 1.69.0
rustc 1.7.0
rustc 1.70.0
rustc 1.71.0
rustc 1.72.0
rustc 1.73.0
rustc 1.74.0
rustc 1.75.0
rustc 1.76.0
rustc 1.77.0
rustc 1.78.0
rustc 1.79.0
rustc 1.8.0
rustc 1.80.0
rustc 1.81.0
rustc 1.82.0
rustc 1.83.0
rustc 1.9.0
rustc beta
rustc nightly
rustc-cg-gcc (master)
x86-64 GCCRS (GCC master)
x86-64 GCCRS (GCCRS master)
x86-64 GCCRS 14.1 (GCC)
x86-64 GCCRS 14.2 (GCC)
Options
Source code
#[derive(Debug, Clone, PartialEq, Eq)] #[non_exhaustive] pub enum JsNativeErrorKind { /// A collection of errors wrapped in a single error. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-aggregate-error-objects /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError Aggregate(Vec<[u8; 7]>), /// A generic error. Commonly used as the base for custom exceptions. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-error-constructor /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error Error, /// An error related to the global function [`eval()`][eval]. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-evalerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError /// [eval]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval Eval, /// An error thrown when a value is outside its valid range. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-rangeerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError Range, /// An error representing an invalid de-reference of a variable. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-referenceerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError Reference, /// An error representing an invalid syntax in the Javascript language. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-syntaxerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError Syntax, /// An error thrown when a variable or argument is not of a valid type. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-typeerror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypeError Type, /// An error thrown when the [`encodeURI()`][e_uri] and [`decodeURI()`][d_uri] functions receive /// invalid parameters. /// /// More information: /// - [ECMAScript reference][spec] /// - [MDN documentation][mdn] /// /// [spec]: https://tc39.es/ecma262/#sec-native-error-types-used-in-this-standard-urierror /// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError /// [e_uri]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURI /// [d_uri]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURI Uri, /// Error thrown when a runtime limit is exceeded. It's not a valid JS error variant. RuntimeLimit, } pub struct JsNativeError { /// The kind of native error (e.g. `TypeError`, `SyntaxError`, etc.) pub kind: JsNativeErrorKind, message: Box<str>, cause: Option<Box<[u8; 7]>>, realm: Option<Box<u8>>, } const fn new_str() -> Box<str> { // SAFETY: miri safe and works in stable unsafe { std::mem::transmute("") } } impl JsNativeError { /// Default `AggregateError` kind `JsNativeError`. // pub const AGGREGATE: Self = Self::aggregate(Vec::new()); // /// Default `Error` kind `JsNativeError`. // pub const ERROR: Self = Self::error(); // /// Default `EvalError` kind `JsNativeError`. // pub const EVAL: Self = Self::eval(); // /// Default `RangeError` kind `JsNativeError`. // pub const RANGE: Self = Self::range(); // /// Default `ReferenceError` kind `JsNativeError`. // pub const REFERENCE: Self = Self::reference(); // /// Default `SyntaxError` kind `JsNativeError`. // pub const SYNTAX: Self = Self::syntax(); // /// Default `error` kind `JsNativeError`. // pub const TYP: Self = Self::typ(); // /// Default `UriError` kind `JsNativeError`. // pub const URI: Self = Self::uri(); // #[cfg(feature = "fuzz")] // /// Default `NoInstructionsRemain` kind `JsNativeError`. // pub const IS_NO_INSTRUCTIONS_REMAIN: Self = Self::is_no_instructions_remain(); // /// Default `error` kind `JsNativeError`. // pub const RUNTIME_LIMIT: Self = Self::runtime_limit(); /// Creates a new `JsNativeError` from its `kind`, `message` and (optionally) its `cause`. const fn new(kind: JsNativeErrorKind, message: Box<str>, cause: Option<Box<[u8; 7]>>) -> Self { Self { kind, message, cause, realm: None, } } /// Creates a new `JsNativeError` of kind `AggregateError` from a list of [`JsError`]s, with /// empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let inner_errors = vec![ /// JsNativeError::typ().into(), /// JsNativeError::syntax().into() /// ]; /// let error = JsNativeError::aggregate(inner_errors); /// /// assert!(matches!( /// error.kind, /// JsNativeErrorKind::Aggregate(ref errors) if errors.len() == 2 /// )); /// ``` #[must_use] #[inline] pub const fn aggregate(errors: Vec<[u8; 7]>) -> Self { Self::new(JsNativeErrorKind::Aggregate(errors), new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Aggregate`]. #[must_use] #[inline] pub const fn is_aggregate(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Aggregate(_)) } /// Creates a new `JsNativeError` of kind `Error`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::error(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Error)); /// ``` #[must_use] #[inline] pub const fn error() -> Self { Self::new(JsNativeErrorKind::Error, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Error`]. #[must_use] #[inline] pub const fn is_error(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Error) } /// Creates a new `JsNativeError` of kind `EvalError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::eval(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Eval)); /// ``` #[must_use] #[inline] pub const fn eval() -> Self { Self::new(JsNativeErrorKind::Eval, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Eval`]. #[must_use] #[inline] pub const fn is_eval(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Eval) } /// Creates a new `JsNativeError` of kind `RangeError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::range(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Range)); /// ``` #[must_use] #[inline] pub const fn range() -> Self { Self::new(JsNativeErrorKind::Range, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Range`]. #[must_use] #[inline] pub const fn is_range(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Range) } /// Creates a new `JsNativeError` of kind `ReferenceError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::reference(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Reference)); /// ``` #[must_use] #[inline] pub const fn reference() -> Self { Self::new(JsNativeErrorKind::Reference, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Reference`]. #[must_use] #[inline] pub const fn is_reference(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Reference) } /// Creates a new `JsNativeError` of kind `SyntaxError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::syntax(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Syntax)); /// ``` #[must_use] #[inline] pub const fn syntax() -> Self { Self::new(JsNativeErrorKind::Syntax, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Syntax`]. #[must_use] #[inline] pub const fn is_syntax(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Syntax) } /// Creates a new `JsNativeError` of kind `TypeError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::typ(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Type)); /// ``` #[must_use] #[inline] pub const fn typ() -> Self { Self::new(JsNativeErrorKind::Type, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Type`]. #[must_use] #[inline] pub const fn is_type(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Type) } /// Creates a new `JsNativeError` of kind `UriError`, with empty `message` and undefined `cause`. /// /// # Examples /// /// ```rust /// # use boa_engine::{JsNativeError, JsNativeErrorKind}; /// let error = JsNativeError::uri(); /// /// assert!(matches!(error.kind, JsNativeErrorKind::Uri)); /// ``` #[must_use] #[inline] pub const fn uri() -> Self { Self::new(JsNativeErrorKind::Uri, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::Uri`]. #[must_use] #[inline] pub const fn is_uri(&self) -> bool { matches!(self.kind, JsNativeErrorKind::Uri) } /// Creates a new `JsNativeError` that indicates that the context exceeded the runtime limits. #[must_use] #[inline] pub const fn runtime_limit() -> Self { Self::new(JsNativeErrorKind::RuntimeLimit, new_str(), None) } /// Check if it's a [`JsNativeErrorKind::RuntimeLimit`]. #[must_use] #[inline] pub const fn is_runtime_limit(&self) -> bool { matches!(self.kind, JsNativeErrorKind::RuntimeLimit) } #[must_use] #[inline] pub fn with_message<S>(mut self, message: S) -> Self where S: Into<Box<str>>, { self.message = message.into(); self } } #[no_mangle] pub fn no_const_consturctor(s: String) -> JsNativeError { JsNativeError::error().with_message(s) }
Become a Patron
Sponsor on GitHub
Donate via PayPal
Source on GitHub
Mailing list
Installed libraries
Wiki
Report an issue
How it works
Contact the author
CE on Mastodon
CE on Bluesky
About the author
Statistics
Changelog
Version tree