Changeset 92250 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Aug 2, 2011, 5:41:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.h
r91883 r92250 227 227 #if ENABLE(CODEBLOCK_SAMPLING) 228 228 if (SamplingTool* sampler = globalData.interpreter->sampler()) 229 sampler->notifyOfScope( *globalData, this);229 sampler->notifyOfScope(globalData, this); 230 230 #else 231 231 UNUSED_PARAM(globalData); … … 479 479 480 480 const Identifier& name() { return m_name; } 481 JSString* nameValue() const { return m_nameValue.get(); } 481 482 size_t parameterCount() const { return m_parameters->size(); } 482 483 unsigned capturedVariableCount() const { return m_numCapturedVariables; } … … 510 511 OwnPtr<FunctionCodeBlock> m_codeBlockForConstruct; 511 512 Identifier m_name; 513 WriteBarrier<JSString> m_nameValue; 512 514 SharedSymbolTable* m_symbolTable; 513 515 };
Note:
See TracChangeset
for help on using the changeset viewer.