Changeset 47620 in webkit for trunk/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Aug 20, 2009, 9:21:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Executable.h
r47597 r47620 202 202 , m_codeBlock(0) 203 203 , m_name(name) 204 , m_numVariables(0) 204 205 { 205 206 m_node = body; … … 228 229 bool usesArguments() const { return body()->usesArguments(); } 229 230 size_t parameterCount() const { return body()->parameterCount(); } 231 size_t variableCount() const { return m_numVariables; } 230 232 UString paramString() const { return body()->paramString(); } 231 233 … … 249 251 CodeBlock* m_codeBlock; 250 252 const Identifier& m_name; 253 size_t m_numVariables; 251 254 252 255 #if ENABLE(JIT)
Note:
See TracChangeset
for help on using the changeset viewer.