Home | History | Annotate | Download | only in src

Lines Matching refs:Breakable

44 // AST node visitor which can tell whether a given statement will be breakable
109 class Breakable;
129 virtual Breakable* AsBreakable() { return NULL; }
161 class Breakable : public NestedStatement {
163 Breakable(FullCodeGenerator* codegen,
167 virtual ~Breakable() {}
168 virtual Breakable* AsBreakable() { return this; }
177 DISALLOW_COPY_AND_ASSIGN(Breakable);
180 class Iteration : public Breakable {
184 : Breakable(codegen, iteration_statement) {}