Changeset 14893 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jun 16, 2006, 4:47:20 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r14834 r14893 1713 1713 c = statement->execute(exec); 1714 1714 exec->context()->popIteration(); 1715 1716 if (exec->dynamicInterpreter()->checkTimeout()) 1717 return Completion(Interrupted); 1718 1715 1719 if (!((c.complType() == Continue) && ls.contains(c.target()))) { 1716 1720 if ((c.complType() == Break) && ls.contains(c.target())) … … 1757 1761 c = statement->execute(exec); 1758 1762 exec->context()->popIteration(); 1763 1764 if (exec->dynamicInterpreter()->checkTimeout()) 1765 return Completion(Interrupted); 1766 1759 1767 if (c.isValueCompletion()) 1760 1768 value = c.value(); … … 1808 1816 return c; 1809 1817 } 1818 1819 if (exec->dynamicInterpreter()->checkTimeout()) 1820 return Completion(Interrupted); 1821 1810 1822 if (expr3) { 1811 1823 v = expr3->evaluate(exec);
Note:
See TracChangeset
for help on using the changeset viewer.