Home | History | Annotate | Download | only in parser

Lines Matching refs:m_token

103         m_lastLine = m_token.m_info.line;
104 m_lastTokenEnd = m_token.m_info.endOffset;
106 m_token.m_type = m_lexer->lex(&m_token.m_data, &m_token.m_info, lexType, strictMode());
116 bool result = m_token.m_type == expected;
124 return m_token.m_type == expected;
129 return m_token.m_info.startOffset;
134 return m_token.m_info.line;
139 return m_token.m_info.endOffset;
230 if (m_token.m_type == SEMICOLON) {
253 JSToken m_token;
686 unsigned startOffset = m_token.m_info.startOffset;
788 const Identifier* name = m_token.m_data.ident;
822 const Identifier* name = m_token.m_data.ident;
962 const Identifier* ident = m_token.m_data.ident;
985 const Identifier* ident = m_token.m_data.ident;
1147 ident = m_token.m_data.ident;
1206 switch (m_token.m_type) {
1252 directive = m_token.m_data.ident;
1265 failIfFalseIfStrict(declareParameter(m_token.m_data.ident));
1266 TreeFormalParameterList list = context.createFormalParameterList(*m_token.m_data.ident);
1272 const Identifier* ident = m_token.m_data.ident;
1296 name = m_token.m_data.ident;
1311 openBracePos = m_token.m_data.intValue;
1322 m_token = cachedInfo->closeBraceToken();
1323 m_lexer->setOffset(m_token.m_info.endOffset);
1324 m_lexer->setLineNumber(m_token.m_info.line);
1338 closeBracePos = m_token.m_data.intValue;
1346 newInfo = adoptPtr(new SourceProviderCacheItem(m_token.m_info.line, closeBracePos));
1411 const Identifier* ident = m_token.m_data.ident;
1425 switch (m_token.m_type) {
1577 switch (m_token.m_type) {
1665 int precedence = isBinaryOperator(m_token.m_type);
1670 int operatorToken = m_token.m_type;
1700 switch (m_token.m_type) {
1705 const Identifier* ident = m_token.m_data.ident;
1732 double propertyName = m_token.m_data.doubleValue;
1740 failIfFalse(m_token.m_type & KeywordTokenFlag);
1747 int startOffset = m_token.m_data.intValue;
1875 switch (m_token.m_type) {
1897 const Identifier* ident = m_token.m_data.ident;
1904 const Identifier* ident = m_token.m_data.ident;
1909 double d = m_token.m_data.doubleValue;
1998 switch (m_token.m_type) {
2039 base = context.createDotAccess(base, *m_token.m_data.ident, expressionStart, expressionEnd, tokenEnd());
2060 while (isUnaryOp(m_token.m_type)) {
2062 switch (m_token.m_type) {
2081 context.appendUnaryToken(tokenStackDepth, m_token.m_type, tokenStart());
2095 switch (m_token.m_type) {