Home | History | Annotate | Download | only in src

Lines Matching refs:Breakable

45 // AST node visitor which can tell whether a given statement will be breakable
117 class Breakable;
135 virtual Breakable* AsBreakable() { return NULL; }
161 // A breakable statement such as a block.
162 class Breakable : public NestedStatement {
164 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
167 virtual ~Breakable() {}
169 virtual Breakable* AsBreakable() { return this; }
183 class Iteration : public Breakable {
186 : Breakable(codegen, statement) {
202 class NestedBlock : public Breakable {
205 : Breakable(codegen, block) {