X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/ba379fdc102753d6be2c4d937058fe40257329fe..4be4e30906bcb8ee30b4d189205cb70bad6707ce:/runtime/CommonIdentifiers.cpp diff --git a/runtime/CommonIdentifiers.cpp b/runtime/CommonIdentifiers.cpp index 3837817..e19df1c 100644 --- a/runtime/CommonIdentifiers.cpp +++ b/runtime/CommonIdentifiers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003, 2007, 2009 Apple Inc. All rights reserved. + * Copyright (C) 2003, 2007, 2009, 2012 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -23,15 +23,16 @@ namespace JSC { -static const char* const nullCString = 0; +#define INITIALIZE_PROPERTY_NAME(name) , name(vm, #name) +#define INITIALIZE_KEYWORD(name) , name##Keyword(vm, #name) -#define INITIALIZE_PROPERTY_NAME(name) , name(globalData, #name) - -CommonIdentifiers::CommonIdentifiers(JSGlobalData* globalData) - : nullIdentifier(globalData, nullCString) - , emptyIdentifier(globalData, "") - , underscoreProto(globalData, "__proto__") - , thisIdentifier(globalData, "this") +CommonIdentifiers::CommonIdentifiers(VM* vm) + : nullIdentifier() + , emptyIdentifier(Identifier::EmptyIdentifier) + , underscoreProto(vm, "__proto__") + , thisIdentifier(vm, "this") + , useStrictIdentifier(vm, "use strict") + JSC_COMMON_IDENTIFIERS_EACH_KEYWORD(INITIALIZE_KEYWORD) JSC_COMMON_IDENTIFIERS_EACH_PROPERTY_NAME(INITIALIZE_PROPERTY_NAME) { }