Lines Matching defs:statement
294 // BreakableStatement is a statement that can be the target of a break
295 // statement.
299 // that we implement breaks targeting other statement forms as breaks targeting
662 Statement* statement() const { return statement_; }
669 WithStatement(Scope* scope, Expression* expression, Statement* statement,
674 statement_(statement) {}
723 // the parser implicitly creates an empty statement. Use the
725 // given if-statement has a then- or an else-part containing code.
784 // If this try/catch statement is meant to rethrow (HandlerTable::UNCAUGHT),
887 // Delegates to another statement, which may be overwritten.
890 // from one statement to another during parsing.
893 Statement* statement() const { return statement_; }
894 void set_statement(Statement* statement) { statement_ = statement; }
908 Statement* statement)
911 statement_(statement),
942 // Note, that in general the following statement is not true:
2733 // The variable statement visiting code may pass null expressions
2912 Statement* statement,
2914 return zone_->New<WithStatement>(scope, expression, statement, pos);