Home | History | Annotate | Download | only in compiler

Lines Matching defs:Environment

28   typedef AstGraphBuilder::Environment Environment;
31 Environment* environment() { return builder_->environment(); }
32 void set_environment(Environment* env) { builder_->set_environment(env); }
54 Environment* then_environment_; // Environment after the 'then' body.
55 Environment* else_environment_; // Environment for the 'else' body.
82 Environment* loop_environment_; // Environment of the loop header.
83 Environment* continue_environment_; // Environment after the loop body.
84 Environment* break_environment_; // Environment after the loop exits.
114 Environment* body_environment_; // Environment after last case body.
115 Environment* label_environment_; // Environment for next label condition.
116 Environment* break_environment_; // Environment after the switch exits.
117 ZoneVector<Environment*> body_environments_;
139 Environment* break_environment_; // Environment after the block exits.
162 Environment* catch_environment_; // Environment for the 'catch' body.
163 Environment* exit_environment_; // Environment after the statement.
190 Environment* finally_environment_; // Environment for the 'finally' body.