Changeset 253520 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Dec 13, 2019, 8:34:45 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r253233 r253520 54 54 #include "JSBoundFunction.h" 55 55 #include "JSCInlines.h" 56 #include "JSFixedArray.h"57 56 #include "JSImmutableButterfly.h" 58 57 #include "JSLexicalEnvironment.h" … … 199 198 length = jsCast<ScopedArguments*>(cell)->length(globalObject); 200 199 break; 201 case JSFixedArrayType:202 length = jsCast<JSFixedArray*>(cell)->size();203 break;204 200 case JSImmutableButterflyType: 205 201 length = jsCast<JSImmutableButterfly*>(cell)->length(); … … 271 267 scope.release(); 272 268 jsCast<ScopedArguments*>(cell)->copyToArguments(globalObject, callFrame, firstElementDest, offset, length); 273 return;274 case JSFixedArrayType:275 scope.release();276 jsCast<JSFixedArray*>(cell)->copyToArguments(globalObject, callFrame, firstElementDest, offset, length);277 269 return; 278 270 case JSImmutableButterflyType:
Note:
See TracChangeset
for help on using the changeset viewer.