Home | History | Annotate | Download | only in src

Lines Matching refs:Breakable

26 // AST node visitor which can tell whether a given statement will be breakable
123 class Breakable;
141 virtual Breakable* AsBreakable() { return NULL; }
167 // A breakable statement such as a block.
168 class Breakable : public NestedStatement {
170 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
173 virtual ~Breakable() {}
175 virtual Breakable* AsBreakable() { return this; }
189 class Iteration : public Breakable {
192 : Breakable(codegen, statement) {
208 class NestedBlock : public Breakable {
211 : Breakable(codegen, block) {