Changeset 87177 in webkit for trunk/Source/JavaScriptCore/parser/ASTBuilder.h
- Timestamp:
- May 24, 2011, 11:49:18 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/ASTBuilder.h
r78727 r87177 110 110 static const bool NeedsFreeVariableInfo = true; 111 111 static const bool CanUseFunctionCache = true; 112 static const int DontBuildKeywords = 0; 113 static const int DontBuildStrings = 0; 112 114 113 115 ExpressionNode* makeBinaryNode(int token, std::pair<ExpressionNode*, BinaryOpInfo>, std::pair<ExpressionNode*, BinaryOpInfo>); … … 210 212 } 211 213 212 ExpressionNode* createDotAccess(ExpressionNode* base, const Identifier &property, int start, int divot, int end)213 { 214 DotAccessorNode* node = new (m_globalData) DotAccessorNode(m_globalData, base, property);214 ExpressionNode* createDotAccess(ExpressionNode* base, const Identifier* property, int start, int divot, int end) 215 { 216 DotAccessorNode* node = new (m_globalData) DotAccessorNode(m_globalData, base, *property); 215 217 setExceptionLocation(node, start, divot, end); 216 218 return node;
Note:
See TracChangeset
for help on using the changeset viewer.