Changeset 155730 in webkit for trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
- Timestamp:
- Sep 13, 2013, 4:18:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGAbstractInterpreterInlines.h
r155567 r155730 1045 1045 AbstractValue& destination = forNode(node); 1046 1046 1047 destination = source; 1048 destination.merge(SpecObject); 1047 if (m_graph.executableFor(node->codeOrigin)->isStrictMode()) 1048 destination.makeHeapTop(); 1049 else { 1050 destination = source; 1051 destination.merge(SpecObject); 1052 } 1049 1053 break; 1050 1054 }
Note:
See TracChangeset
for help on using the changeset viewer.