Changeset 19534 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Feb 9, 2007, 11:28:02 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r19364 r19534 1733 1733 exec->context()->popIteration(); 1734 1734 1735 if (exec->dynamicInterpreter()-> checkTimeout())1735 if (exec->dynamicInterpreter()->timedOut()) 1736 1736 return Completion(Interrupted); 1737 1737 … … 1781 1781 exec->context()->popIteration(); 1782 1782 1783 if (exec->dynamicInterpreter()-> checkTimeout())1783 if (exec->dynamicInterpreter()->timedOut()) 1784 1784 return Completion(Interrupted); 1785 1785 … … 1836 1836 } 1837 1837 1838 if (exec->dynamicInterpreter()-> checkTimeout())1838 if (exec->dynamicInterpreter()->timedOut()) 1839 1839 return Completion(Interrupted); 1840 1840
Note:
See TracChangeset
for help on using the changeset viewer.