Changeset 215720 in webkit for trunk/Source/JavaScriptCore/interpreter
- Timestamp:
- Apr 24, 2017, 10:09:10 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r215476 r215720 47 47 #include "JSBoundFunction.h" 48 48 #include "JSCInlines.h" 49 #include "JSFixedArray.h" 49 50 #include "JSLexicalEnvironment.h" 50 51 #include "JSModuleEnvironment.h" … … 192 193 length = jsCast<ScopedArguments*>(cell)->length(callFrame); 193 194 break; 195 case JSFixedArrayType: 196 length = jsCast<JSFixedArray*>(cell)->size(); 197 break; 194 198 case StringType: 195 199 case SymbolType: … … 253 257 case ScopedArgumentsType: 254 258 jsCast<ScopedArguments*>(cell)->copyToArguments(callFrame, firstElementDest, offset, length); 259 return; 260 case JSFixedArrayType: 261 jsCast<JSFixedArray*>(cell)->copyToArguments(callFrame, firstElementDest, offset, length); 255 262 return; 256 263 default: {
Note:
See TracChangeset
for help on using the changeset viewer.