Home | History | Annotate | Download | only in src

Lines Matching defs:Finally

113   class Finally;
133 virtual Finally* AsFinally() { return NULL; }
210 // The environment inside the try block of a try/finally statement.
224 // A FinallyEnvironment represents being inside a finally block.
225 // Abnormal termination of the finally block needs to clean up
227 class Finally : public NestedStatement {
229 explicit Finally(FullCodeGenerator* codegen) : NestedStatement(codegen) { }
230 virtual ~Finally() {}
231 virtual Finally* AsFinally() { return this; }
236 // Number of extra stack slots occupied during a finally block.
238 DISALLOW_COPY_AND_ASSIGN(Finally);