Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: lib/runtime/dart/_js_embedded_names.js

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: simplify diff in js_codegen.dart Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 dart_library.library('dart/_js_embedded_names', null, /* Imports */[ 1 dart_library.library('dart/_js_embedded_names', null, /* Imports */[
2 "dart/_runtime" 2 'dart/_runtime'
3 ], /* Lazy imports */[ 3 ], /* Lazy imports */[
4 ], function(exports, dart) { 4 ], function(exports, dart) {
5 'use strict'; 5 'use strict';
6 let dartx = dart.dartx; 6 let dartx = dart.dartx;
7 const DISPATCH_PROPERTY_NAME = "dispatchPropertyName"; 7 const DISPATCH_PROPERTY_NAME = "dispatchPropertyName";
8 const TYPE_INFORMATION = 'typeInformation'; 8 const TYPE_INFORMATION = 'typeInformation';
9 const GLOBAL_FUNCTIONS = 'globalFunctions'; 9 const GLOBAL_FUNCTIONS = 'globalFunctions';
10 const STATICS = 'statics'; 10 const STATICS = 'statics';
11 const INTERCEPTED_NAMES = 'interceptedNames'; 11 const INTERCEPTED_NAMES = 'interceptedNames';
12 const MANGLED_GLOBAL_NAMES = 'mangledGlobalNames'; 12 const MANGLED_GLOBAL_NAMES = 'mangledGlobalNames';
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 exports.DEFERRED_INITIALIZED = DEFERRED_INITIALIZED; 61 exports.DEFERRED_INITIALIZED = DEFERRED_INITIALIZED;
62 exports.CLASS_ID_EXTRACTOR = CLASS_ID_EXTRACTOR; 62 exports.CLASS_ID_EXTRACTOR = CLASS_ID_EXTRACTOR;
63 exports.CLASS_FIELDS_EXTRACTOR = CLASS_FIELDS_EXTRACTOR; 63 exports.CLASS_FIELDS_EXTRACTOR = CLASS_FIELDS_EXTRACTOR;
64 exports.INSTANCE_FROM_CLASS_ID = INSTANCE_FROM_CLASS_ID; 64 exports.INSTANCE_FROM_CLASS_ID = INSTANCE_FROM_CLASS_ID;
65 exports.INITIALIZE_EMPTY_INSTANCE = INITIALIZE_EMPTY_INSTANCE; 65 exports.INITIALIZE_EMPTY_INSTANCE = INITIALIZE_EMPTY_INSTANCE;
66 exports.TYPEDEF_TYPE_PROPERTY_NAME = TYPEDEF_TYPE_PROPERTY_NAME; 66 exports.TYPEDEF_TYPE_PROPERTY_NAME = TYPEDEF_TYPE_PROPERTY_NAME;
67 exports.TYPEDEF_PREDICATE_PROPERTY_NAME = TYPEDEF_PREDICATE_PROPERTY_NAME; 67 exports.TYPEDEF_PREDICATE_PROPERTY_NAME = TYPEDEF_PREDICATE_PROPERTY_NAME;
68 exports.NATIVE_SUPERCLASS_TAG_NAME = NATIVE_SUPERCLASS_TAG_NAME; 68 exports.NATIVE_SUPERCLASS_TAG_NAME = NATIVE_SUPERCLASS_TAG_NAME;
69 exports.MAP_TYPE_TO_INTERCEPTOR = MAP_TYPE_TO_INTERCEPTOR; 69 exports.MAP_TYPE_TO_INTERCEPTOR = MAP_TYPE_TO_INTERCEPTOR;
70 }); 70 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698