Changeset 9078 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Apr 28, 2005, 5:22:55 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r9033 r9078 1933 1933 return c; 1934 1934 } 1935 1936 return Completion(); // work around gcc 4.0 bug 1935 1937 } 1936 1938 … … 2001 2003 } 2002 2004 } 2005 2006 return Completion(); // work around gcc 4.0 bug 2003 2007 } 2004 2008 … … 2458 2462 if ((res.complType() == Break) && ls.contains(res.target())) 2459 2463 return Completion(Normal, res.value()); 2460 else 2461 return res; 2464 return res; 2462 2465 } 2463 2466 … … 2497 2500 if ((e.complType() == Break) && (e.target() == label)) 2498 2501 return Completion(Normal, e.value()); 2499 else 2500 return e; 2502 return e; 2501 2503 } 2502 2504
Note:
See TracChangeset
for help on using the changeset viewer.