Changeset 20304 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Mar 18, 2007, 9:32:24 PM (18 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r18712 r20304 126 126 // The debugger may have been deallocated by now if the WebFrame 127 127 // we were running in has been destroyed, so refetch it. 128 // See http://bug zilla.opendarwin.org/show_bug.cgi?id=9477128 // See http://bugs.webkit.org/show_bug.cgi?id=9477 129 129 dbg = exec->dynamicInterpreter()->debugger(); 130 130 -
trunk/JavaScriptCore/kjs/grammar.y
r17377 r20304 244 244 | '{' '}' { $$ = new ObjectLiteralNode(); } 245 245 | '{' PropertyList '}' { $$ = new ObjectLiteralNode($2); } 246 /* allow extra comma, see http://bug zilla.opendarwin.org/show_bug.cgi?id=5939 */246 /* allow extra comma, see http://bugs.webkit.org/show_bug.cgi?id=5939 */ 247 247 | '{' PropertyList ',' '}' { $$ = new ObjectLiteralNode($2); } 248 248 ; -
trunk/JavaScriptCore/kjs/keywords.table
r14403 r20304 45 45 46 46 # these words are reserved for future use in the ECMA spec, but not in WinIE 47 # (see http://bug zilla.opendarwin.org/show_bug.cgi?id=6179)47 # (see http://bugs.webkit.org/show_bug.cgi?id=6179) 48 48 # abstract RESERVED 49 49 # boolean RESERVED -
trunk/JavaScriptCore/kjs/lexer.cpp
r18712 r20304 130 130 { 131 131 // Here would be a good place to strip Cf characters, but that has caused compatibility problems: 132 // <http://bug zilla.opendarwin.org/show_bug.cgi?id=10183>.132 // <http://bugs.webkit.org/show_bug.cgi?id=10183>. 133 133 while (p--) { 134 134 pos++;
Note:
See TracChangeset
for help on using the changeset viewer.