Changeset 27842 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Nov 15, 2007, 10:54:09 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r27799 r27842 133 133 ++NodeCounter::count; 134 134 #endif 135 m_line = Lexer::curr()->lineNo();135 m_line = lexer().lineNo(); 136 136 if (!newNodes) 137 137 newNodes = new HashSet<Node*>; … … 146 146 ++NodeCounter::count; 147 147 #endif 148 m_line = Lexer::curr()->lineNo();148 m_line = lexer().lineNo(); 149 149 if (!newNodes) 150 150 newNodes = new HashSet<Node*>; … … 4413 4413 FunctionBodyNode::FunctionBodyNode(SourceElements* children) 4414 4414 : BlockNode(children) 4415 , m_sourceURL( Lexer::curr()->sourceURL())4416 , m_sourceId( Parser::sid)4415 , m_sourceURL(lexer().sourceURL()) 4416 , m_sourceId(parser().sourceId()) 4417 4417 , m_initializedDeclarationStacks(false) 4418 4418 , m_initializedSymbolTable(false)
Note:
See TracChangeset
for help on using the changeset viewer.