We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6372264 commit b13b0a3Copy full SHA for b13b0a3
ratel-codegen/src/statement.rs
@@ -11,6 +11,9 @@ impl<'ast, G: Generator> ToCode<G> for Statement<'ast> {
11
12
match *self {
13
Empty => {},
14
+ Debugger => {
15
+ gen.write_bytes(b"debugger");
16
+ },
17
Expression(ref expression) => {
18
if expression.is_allowed_as_bare_statement() {
19
gen.write(expression);
@@ -313,6 +316,12 @@ impl<'ast, G: Generator> ToCode<G> for SwitchCase<'ast> {
313
316
mod test {
314
317
use assert_min;
315
318
319
+ #[test]
320
+ fn debugger_statement() {
321
+ assert_min("debugger", "debugger");
322
+ assert_min("debugger;", "debugger");
323
+ }
324
+
325
#[test]
326
fn block_statement() {
327
assert_min("{}", "{}");
ratel-visitor/src/statement.rs
@@ -19,6 +19,9 @@ impl<'ast> Visitable<'ast> for StatementNode<'ast> {
// EmptyStatement doesn't have children, we return early to avoid calling pop_parent
20
return;
21
},
22
23
+ return;
24
25
26
visitor.on_expression_statement(expression, self);
27
visitor.push_parent(ParentNode::from(self));
ratel/src/ast/statement.rs
@@ -120,6 +120,7 @@ pub type ClassStatement<'ast> = Class<'ast, MandatoryName<'ast>>;
120
#[derive(Debug, PartialEq, Clone, Copy)]
121
pub enum Statement<'ast> {
122
Empty,
123
+ Debugger,
124
Expression(ExpressionNode<'ast>),
125
Declaration(DeclarationStatement<'ast>),
126
Return(ReturnStatement<'ast>),
ratel/src/astgen/statement.rs
@@ -212,6 +212,7 @@ impl<'ast> SerializeInLoc for Statement<'ast> {
212
213
214
Empty => self.in_loc(serializer, "EmptyStatement", 0, |_| Ok(())),
215
+ Debugger => self.in_loc(serializer, "DebuggerStatement", 0, |_| Ok(())),
216
217
self.in_loc(serializer, "ExpressionStatement", 1, |state| {
218
state.serialize_field("expression", expression)
ratel/src/parser/statement.rs
@@ -33,7 +33,7 @@ static STMT_HANDLERS: [StatementHandler; 108] = [
33
CONS, BRK, DO, ____, ____, ____, ____, CLAS, ____, RET, WHL, ____,
34
// CONST BREAK DO CASE ELSE CATCH EXPRT CLASS EXTND RET WHILE FINLY
35
36
- ____, ____, CONT, FOR, SWCH, ____, ____, FUNC, THIS, ____, IF, THRW,
+ ____, ____, CONT, FOR, SWCH, ____, DBGGR, FUNC, THIS, ____, IF, THRW,
37
// SUPER WITH CONT FOR SWTCH YIELD DBGGR FUNCT THIS DEFLT IF THROW
38
39
____, TRY, ____, TRUE, FALS, NULL, UNDE, STR, NUM, BIN, ____, ____,
@@ -72,6 +72,12 @@ create_handlers! {
72
73
stmt
74
};
75
+ const DBGGR = |par| {
76
+ let stmt = par.alloc_in_loc(Statement::Debugger);
77
+ par.lexer.consume();
78
79
+ stmt
80
+ };
81
const BLCK = |par| par.block_statement();
82
const VAR = |par| par.variable_declaration_statement(DeclarationKind::Var);
83
const LET = |par| par.variable_declaration_statement(DeclarationKind::Let);
0 commit comments