Changeset 180514 in webkit for trunk/Source/JavaScriptCore/runtime/JSFunctionNameScope.h
- Timestamp:
- Feb 23, 2015, 1:54:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSFunctionNameScope.h
r180460 r180514 38 38 friend class JSNameScope; 39 39 40 JSFunctionNameScope(VM& vm, JSGlobalObject* globalObject, JSScope* next )41 : Base(vm, globalObject->catchScopeStructure(), next )40 JSFunctionNameScope(VM& vm, JSGlobalObject* globalObject, JSScope* next, SymbolTable* symbolTable) 41 : Base(vm, globalObject->catchScopeStructure(), next, symbolTable) 42 42 { 43 43 } 44 44 45 45 public: 46 static JSFunctionNameScope* create(VM& vm, JSGlobalObject* globalObject, JSScope* currentScope, const Identifier& identifier, JSValue value, unsigned attributes)46 static JSFunctionNameScope* create(VM& vm, JSGlobalObject* globalObject, JSScope* currentScope, SymbolTable* symbolTable, JSValue value) 47 47 { 48 return Base::create<JSFunctionNameScope>(vm, globalObject, currentScope, identifier, value, attributes);48 return Base::create<JSFunctionNameScope>(vm, globalObject, currentScope, symbolTable, value); 49 49 } 50 50
Note:
See TracChangeset
for help on using the changeset viewer.