Changeset 175426 in webkit for trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
- Timestamp:
- Oct 31, 2014, 2:27:10 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r174359 r175426 1270 1270 { 1271 1271 LLINT_BEGIN(); 1272 JSValue v = LLINT_OP_C( 1).jsValue();1272 JSValue v = LLINT_OP_C(2).jsValue(); 1273 1273 JSObject* o = v.toObject(exec); 1274 1274 LLINT_CHECK_EXCEPTION(); 1275 1275 1276 1276 exec->setScope(JSWithScope::create(exec, o)); 1277 1277 … … 1290 1290 LLINT_BEGIN(); 1291 1291 CodeBlock* codeBlock = exec->codeBlock(); 1292 JSNameScope::Type type = static_cast<JSNameScope::Type>(pc[ 4].u.operand);1293 JSNameScope* scope = JSNameScope::create(exec, codeBlock->identifier(pc[ 1].u.operand), LLINT_OP(2).jsValue(), pc[3].u.operand, type);1292 JSNameScope::Type type = static_cast<JSNameScope::Type>(pc[5].u.operand); 1293 JSNameScope* scope = JSNameScope::create(exec, codeBlock->identifier(pc[2].u.operand), LLINT_OP(3).jsValue(), pc[4].u.operand, type); 1294 1294 exec->setScope(scope); 1295 1295 LLINT_END();
Note:
See TracChangeset
for help on using the changeset viewer.