Changeset 44813 in webkit for trunk/JavaScriptCore/runtime/CommonIdentifiers.cpp
- Timestamp:
- Jun 18, 2009, 12:18:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/CommonIdentifiers.cpp
r44224 r44813 1 1 /* 2 * Copyright (C) 2003, 2007 Apple Inc. All rights reserved.2 * Copyright (C) 2003, 2007, 2009 Apple Inc. All rights reserved. 3 3 * 4 4 * This library is free software; you can redistribute it and/or … … 24 24 namespace JSC { 25 25 26 const char* const nullCString = 0;26 static const char* const nullCString = 0; 27 27 28 28 #define INITIALIZE_PROPERTY_NAME(name) , name(globalData, #name) … … 30 30 CommonIdentifiers::CommonIdentifiers(JSGlobalData* globalData) 31 31 : nullIdentifier(globalData, nullCString) 32 , emptyIdentifier(globalData, "") 32 33 , underscoreProto(globalData, "__proto__") 33 34 , thisIdentifier(globalData, "this")
Note:
See TracChangeset
for help on using the changeset viewer.