Changeset 164835 in webkit for trunk/Source/JavaScriptCore/parser/Lexer.cpp
- Timestamp:
- Feb 27, 2014, 3:25:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Lexer.cpp
r163960 r164835 28 28 #include "JSFunctionInlines.h" 29 29 30 #include "BuiltinNames.h" 30 31 #include "JSGlobalObjectFunctions.h" 31 32 #include "Identifier.h" … … 766 767 * be used as a safety net while implementing builtins. 767 768 */ 768 if (*ident == vm.propertyNames-> call)769 if (*ident == vm.propertyNames->builtinNames().callPublicName()) 769 770 return false; 770 if (*ident == vm.propertyNames-> apply)771 if (*ident == vm.propertyNames->builtinNames().applyPublicName()) 771 772 return false; 772 773 if (*ident == vm.propertyNames->eval)
Note:
See TracChangeset
for help on using the changeset viewer.