| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /// Contains the names of globals that are embedded into the output by the | 5 /// Contains the names of globals that are embedded into the output by the |
| 6 /// compiler. | 6 /// compiler. |
| 7 /// | 7 /// |
| 8 /// Variables embedded this way should be access with `JS_EMBEDDED_GLOBAL` from | 8 /// Variables embedded this way should be access with `JS_EMBEDDED_GLOBAL` from |
| 9 /// the `_foreign_helper` library. | 9 /// the `_foreign_helper` library. |
| 10 /// | 10 /// |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 const INTERCEPTORS_BY_TAG = 'interceptorsByTag'; | 25 const INTERCEPTORS_BY_TAG = 'interceptorsByTag'; |
| 26 const LEAF_TAGS = 'leafTags'; | 26 const LEAF_TAGS = 'leafTags'; |
| 27 const LAZIES = 'lazies'; | 27 const LAZIES = 'lazies'; |
| 28 const GET_ISOLATE_TAG = 'getIsolateTag'; | 28 const GET_ISOLATE_TAG = 'getIsolateTag'; |
| 29 const ISOLATE_TAG = 'isolateTag'; | 29 const ISOLATE_TAG = 'isolateTag'; |
| 30 const CURRENT_SCRIPT = 'currentScript'; | 30 const CURRENT_SCRIPT = 'currentScript'; |
| 31 const DEFERRED_LIBRARY_URIS = 'deferredLibraryUris'; | 31 const DEFERRED_LIBRARY_URIS = 'deferredLibraryUris'; |
| 32 const DEFERRED_LIBRARY_HASHES = 'deferredLibraryHashes'; | 32 const DEFERRED_LIBRARY_HASHES = 'deferredLibraryHashes'; |
| 33 const INITIALIZE_LOADED_HUNK = 'initializeLoadedHunk'; | 33 const INITIALIZE_LOADED_HUNK = 'initializeLoadedHunk'; |
| 34 const IS_HUNK_LOADED = 'isHunkLoaded'; | 34 const IS_HUNK_LOADED = 'isHunkLoaded'; |
| 35 const IS_HUNK_INITIALIZED = 'isHunkInitialized'; |
| 36 const DEFERRED_INITIALIZED = 'deferredInitialized'; |
| 35 const CLASS_ID_EXTRACTOR = 'classIdExtractor'; | 37 const CLASS_ID_EXTRACTOR = 'classIdExtractor'; |
| 36 const CLASS_FIELDS_EXTRACTOR = 'classFieldsExtractor'; | 38 const CLASS_FIELDS_EXTRACTOR = 'classFieldsExtractor'; |
| 37 const INSTANCE_FROM_CLASS_ID = "instanceFromClassId"; | 39 const INSTANCE_FROM_CLASS_ID = "instanceFromClassId"; |
| 38 const INITIALIZE_EMPTY_INSTANCE = "initializeEmptyInstance"; | 40 const INITIALIZE_EMPTY_INSTANCE = "initializeEmptyInstance"; |
| 39 const TYPEDEF_TYPE_PROPERTY_NAME = r"$typedefType"; | 41 const TYPEDEF_TYPE_PROPERTY_NAME = r"$typedefType"; |
| 40 const TYPEDEF_PREDICATE_PROPERTY_NAME = r"$$isTypedef"; | 42 const TYPEDEF_PREDICATE_PROPERTY_NAME = r"$$isTypedef"; |
| 41 const NATIVE_SUPERCLASS_TAG_NAME = r"$nativeSuperclassTag"; | 43 const NATIVE_SUPERCLASS_TAG_NAME = r"$nativeSuperclassTag"; |
| OLD | NEW |