Changeset 127939 in webkit for trunk/Source/JavaScriptCore/parser/ASTBuilder.h
- Timestamp:
- Sep 7, 2012, 4:59:10 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r127654 r127939 315 315 if (*name == m_globalData->propertyNames->arguments) 316 316 usesArguments(); 317 m_scope.m_funcDeclarations->data.append( decl->body());317 m_scope.m_funcDeclarations->data.append(DeclarationStacks::FunctionDeclaration(decl->body())); 318 318 body->setLoc(bodyStartLine, bodyEndLine, location.column); 319 319 return decl; … … 509 509 if (m_globalData->propertyNames->arguments == *ident) 510 510 usesArguments(); 511 m_scope.m_varDeclarations->data.append( std::make_pair(ident, attrs));511 m_scope.m_varDeclarations->data.append(DeclarationStacks::VarDeclaration(ident, attrs)); 512 512 } 513 513
Note:
See TracChangeset
for help on using the changeset viewer.