Changeset 169920 in webkit for trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp
- Timestamp:
- Jun 12, 2014, 4:30:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp
r168107 r169920 83 83 } 84 84 85 UnlinkedFunctionExecutable::UnlinkedFunctionExecutable(VM* vm, Structure* structure, const SourceCode& source, FunctionBodyNode* node, bool isFromGlobalCode,UnlinkedFunctionKind kind)85 UnlinkedFunctionExecutable::UnlinkedFunctionExecutable(VM* vm, Structure* structure, const SourceCode& source, FunctionBodyNode* node, UnlinkedFunctionKind kind) 86 86 : Base(*vm, structure) 87 87 , m_numCapturedVariables(node->capturedVariableCount()) … … 89 89 , m_isInStrictContext(node->isStrictMode()) 90 90 , m_hasCapturedVariables(node->hasCapturedVariables()) 91 , m_isFromGlobalCode(isFromGlobalCode)92 91 , m_isBuiltinFunction(kind == UnlinkedBuiltinFunction) 93 92 , m_name(node->ident())
Note:
See TracChangeset
for help on using the changeset viewer.