Changeset 202255 in webkit for trunk/Source/JavaScriptCore/parser/Lexer.cpp
- Timestamp:
- Jun 20, 2016, 5:26:59 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Lexer.cpp
r202248 r202255 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 * Copyright (C) 2006 -2009, 2011-2013, 2016Apple Inc. All Rights Reserved.3 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012, 2013 Apple Inc. All Rights Reserved. 4 4 * Copyright (C) 2007 Cameron Zwarich ([email protected]) 5 5 * Copyright (C) 2010 Zoltan Herczeg ([email protected]) … … 940 940 ident = m_vm->propertyNames->lookUpPrivateName(*ident); 941 941 else if (*ident == m_vm->propertyNames->undefinedKeyword) 942 tokenData->ident = &m_vm->propertyNames-> builtinNames().undefinedPrivateName();942 tokenData->ident = &m_vm->propertyNames->undefinedPrivateName; 943 943 if (!ident) 944 944 return INVALID_PRIVATE_NAME_ERRORTOK; … … 1017 1017 ident = m_vm->propertyNames->lookUpPrivateName(*ident); 1018 1018 else if (*ident == m_vm->propertyNames->undefinedKeyword) 1019 tokenData->ident = &m_vm->propertyNames-> builtinNames().undefinedPrivateName();1019 tokenData->ident = &m_vm->propertyNames->undefinedPrivateName; 1020 1020 if (!ident) 1021 1021 return INVALID_PRIVATE_NAME_ERRORTOK;
Note:
See TracChangeset
for help on using the changeset viewer.