Changeset 35593 in webkit for trunk/JavaScriptCore/kjs/Parser.h
- Timestamp:
- Aug 6, 2008, 3:37:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/Parser.h
r35466 r35593 57 57 58 58 void didFinishParsing(SourceElements*, ParserRefCountedData<DeclarationStacks::VarStack>*, 59 ParserRefCountedData<DeclarationStacks::FunctionStack>*, bool usesEval, bool needsClosure, int lastLine );59 ParserRefCountedData<DeclarationStacks::FunctionStack>*, bool usesEval, bool needsClosure, int lastLine, int numConstants); 60 60 61 61 private: … … 74 74 bool m_needsClosure; 75 75 int m_lastLine; 76 int m_numConstants; 76 77 }; 77 78 … … 93 94 sourceProvider.get(), 94 95 m_usesEval, 95 m_needsClosure); 96 m_needsClosure, 97 m_numConstants); 96 98 m_varDeclarations = 0; 97 99 m_funcDeclarations = 0;
Note:
See TracChangeset
for help on using the changeset viewer.