HomeSort by relevance Sort by last modified time
    Searched defs:Breakable (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
full-codegen.h 49 // AST node visitor which can tell whether a given statement will be breakable
202 class Breakable;
220 virtual Breakable* AsBreakable() { return NULL; }
246 // A breakable statement such as a block.
247 class Breakable : public NestedStatement {
249 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
252 virtual ~Breakable() {}
254 virtual Breakable* AsBreakable() { return this; }
268 class Iteration : public Breakable {
271 : Breakable(codegen, statement)
    [all...]
  /external/v8/src/
full-codegen.h 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)
    [all...]

Completed in 642 milliseconds