Changeset 43428 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
- Timestamp:
- May 8, 2009, 10:25:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r43401 r43428 1727 1727 } 1728 1728 1729 // To get here there must be at least one finally block present 1730 do { 1731 ASSERT(topScope->isFinallyBlock); 1729 while (topScope > bottomScope && topScope->isFinallyBlock) { 1732 1730 emitJumpSubroutine(topScope->finallyContext.retAddrDst, topScope->finallyContext.finallyAddr); 1733 1731 --topScope; 1734 if (!topScope->isFinallyBlock) 1735 break; 1736 } while (topScope > bottomScope); 1732 } 1737 1733 } 1738 1734 return emitJump(target);
Note:
See TracChangeset
for help on using the changeset viewer.