Changeset 89954 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Jun 28, 2011, 1:21:37 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r89465 r89954 1607 1607 Constructs a new Array instance using the original 1608 1608 constructor, and puts the result in register dst. 1609 The array be initialized with the values from immediateBuffer[index]1609 The array be initialized with the values from constantBuffer[index] 1610 1610 */ 1611 1611 int dst = vPC[1].u.operand; 1612 1612 int firstArg = vPC[2].u.operand; 1613 1613 int argCount = vPC[3].u.operand; 1614 ArgList args(codeBlock-> immediateBuffer(firstArg), argCount);1614 ArgList args(codeBlock->constantBufferfirstArg), argCount); 1615 1615 callFrame->uncheckedR(dst) = JSValue(constructArray(callFrame, args)); 1616 1616
Note:
See TracChangeset
for help on using the changeset viewer.