-
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
139 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
//! This module implements the global `SyntaxError` object. | ||
//! | ||
//! The SyntaxError object represents an error when trying to interpret syntactically invalid code. | ||
//! It is thrown when the JavaScript engine encounters tokens or token order that does not conform | ||
//! to the syntax of the language when parsing code. | ||
//! | ||
//! More information: | ||
//! - [MDN documentation][mdn] | ||
//! - [ECMAScript reference][spec] | ||
//! | ||
//! [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 | ||
use crate::{ | ||
builtins::{ | ||
function::make_builtin_fn, | ||
function::make_constructor_fn, | ||
object::ObjectData, | ||
value::{ResultValue, Value}, | ||
}, | ||
exec::Interpreter, | ||
profiler::BoaProfiler, | ||
}; | ||
/// JavaScript `SyntaxError` impleentation. | ||
#[derive(Debug, Clone, Copy)] | ||
pub(crate) struct SyntaxError; | ||
|
||
impl SyntaxError { | ||
/// The name of the object. | ||
pub(crate) const NAME: &'static str = "SyntaxError"; | ||
|
||
/// The amount of arguments this function object takes. | ||
pub(crate) const LENGTH: usize = 1; | ||
|
||
/// Create a new error object. | ||
pub(crate) fn make_error(this: &Value, args: &[Value], ctx: &mut Interpreter) -> ResultValue { | ||
if let Some(message) = args.get(0) { | ||
this.set_field("message", ctx.to_string(message)?); | ||
} | ||
|
||
// This value is used by console.log and other routines to match Object type | ||
// to its Javascript Identifier (global constructor method name) | ||
this.set_data(ObjectData::Error); | ||
Err(this.clone()) | ||
} | ||
|
||
/// `Error.prototype.toString()` | ||
/// | ||
/// The toString() method returns a string representing the specified Error object. | ||
/// | ||
/// More information: | ||
/// - [MDN documentation][mdn] | ||
/// - [ECMAScript reference][spec] | ||
/// | ||
/// [spec]: https://tc39.es/ecma262/#sec-error.prototype.tostring | ||
/// [mdn]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/toString | ||
#[allow(clippy::wrong_self_convention)] | ||
pub(crate) fn to_string(this: &Value, _: &[Value], _: &mut Interpreter) -> ResultValue { | ||
let name = this.get_field("name"); | ||
let message = this.get_field("message"); | ||
Ok(format!("{}: {}", name, message).into()) | ||
} | ||
|
||
/// Create a new `SyntaxError` object. | ||
pub(crate) fn create(global: &Value) -> Value { | ||
let prototype = Value::new_object(Some(global)); | ||
prototype.set_field("name", Self::NAME); | ||
prototype.set_field("message", ""); | ||
|
||
make_builtin_fn(Self::to_string, "toString", &prototype, 0); | ||
|
||
make_constructor_fn( | ||
Self::NAME, | ||
Self::LENGTH, | ||
Self::make_error, | ||
global, | ||
prototype, | ||
true, | ||
) | ||
} | ||
|
||
/// Initialise the global object with the `SyntaxError` object. | ||
#[inline] | ||
pub(crate) fn init(global: &Value) -> (&str, Value) { | ||
let _timer = BoaProfiler::global().start_event(Self::NAME, "init"); | ||
|
||
(Self::NAME, Self::create(global)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters