Changeset 43311 in webkit for trunk/JavaScriptCore/parser/Grammar.y
- Timestamp:
- May 6, 2009, 10:10:22 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Grammar.y
r43156 r43311 30 30 #include "JSValue.h" 31 31 #include "JSObject.h" 32 #include "Node s.h"32 #include "NodeConstructors.h" 33 33 #include "Lexer.h" 34 34 #include "JSString.h" … … 148 148 { 149 149 unsigned attrs = DeclarationStacks::IsConstant; 150 if (decl-> m_init)150 if (decl->hasInitializer()) 151 151 attrs |= DeclarationStacks::HasInitializer; 152 appendToVarDeclarationList(globalPtr, varDecls, decl-> m_ident, attrs);152 appendToVarDeclarationList(globalPtr, varDecls, decl->ident(), attrs); 153 153 } 154 154
Note:
See TracChangeset
for help on using the changeset viewer.