Home | History | Annotate | Download | only in src

Lines Matching refs:NestedStatement

116   class NestedStatement BASE_EMBEDDED {
118 explicit NestedStatement(FullCodeGenerator* codegen) : codegen_(codegen) {
123 virtual ~NestedStatement() {
152 NestedStatement* outer() { return previous_; }
157 NestedStatement* previous_;
158 DISALLOW_COPY_AND_ASSIGN(NestedStatement);
161 class Breakable : public NestedStatement {
165 : NestedStatement(codegen),
197 class TryCatch : public NestedStatement {
200 : NestedStatement(codegen), catch_entry_(catch_entry) { }
211 class TryFinally : public NestedStatement {
214 : NestedStatement(codegen), finally_entry_(finally_entry) { }
227 class Finally : public NestedStatement {
229 explicit Finally(FullCodeGenerator* codegen) : NestedStatement(codegen) { }
737 NestedStatement* nesting_stack_;
745 friend class NestedStatement;