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

Side by Side Diff: pkg/compiler/lib/src/js_emitter/full_emitter/setup_program_builder.dart

Issue 2265473004: Introduce "CommonElements" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: cl Created 4 years, 4 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 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 part of dart2js.js_emitter.full_emitter; 5 part of dart2js.js_emitter.full_emitter;
6 6
7 // TODO(ahe): Share these with js_helper.dart. 7 // TODO(ahe): Share these with js_helper.dart.
8 const FUNCTION_INDEX = 0; 8 const FUNCTION_INDEX = 0;
9 const NAME_INDEX = 1; 9 const NAME_INDEX = 1;
10 const CALL_NAME_INDEX = 2; 10 const CALL_NAME_INDEX = 2;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'jsInteropBoostrap': backend.jsInteropAnalysis.buildJsInteropBootstrap(), 130 'jsInteropBoostrap': backend.jsInteropAnalysis.buildJsInteropBootstrap(),
131 'isInterceptorClass': namer.operatorIs(backend.helpers.jsInterceptorClass), 131 'isInterceptorClass': namer.operatorIs(backend.helpers.jsInterceptorClass),
132 'isObject': namer.operatorIs(compiler.coreClasses.objectClass), 132 'isObject': namer.operatorIs(compiler.coreClasses.objectClass),
133 'specProperty': js.string(namer.nativeSpecProperty), 133 'specProperty': js.string(namer.nativeSpecProperty),
134 'trivialNsmHandlers': emitter.buildTrivialNsmHandlers(), 134 'trivialNsmHandlers': emitter.buildTrivialNsmHandlers(),
135 'hasRetainedMetadata': backend.hasRetainedMetadata, 135 'hasRetainedMetadata': backend.hasRetainedMetadata,
136 'types': typesAccess, 136 'types': typesAccess,
137 'objectClassName': 137 'objectClassName':
138 js.quoteName(namer.runtimeTypeName(compiler.coreClasses.objectClass)), 138 js.quoteName(namer.runtimeTypeName(compiler.coreClasses.objectClass)),
139 'needsStructuredMemberInfo': emitter.needsStructuredMemberInfo, 139 'needsStructuredMemberInfo': emitter.needsStructuredMemberInfo,
140 'usesMangledNames': 140 'usesMangledNames': compiler.commonElements.mirrorsLibrary != null ||
141 compiler.mirrorsLibrary != null || compiler.enabledFunctionApply, 141 compiler.enabledFunctionApply,
142 'tearOffCode': buildTearOffCode(backend), 142 'tearOffCode': buildTearOffCode(backend),
143 'nativeInfoHandler': nativeInfoHandler, 143 'nativeInfoHandler': nativeInfoHandler,
144 'operatorIsPrefix': js.string(namer.operatorIsPrefix), 144 'operatorIsPrefix': js.string(namer.operatorIsPrefix),
145 'deferredActionString': js.string(namer.deferredAction) 145 'deferredActionString': js.string(namer.deferredAction)
146 }; 146 };
147 String skeleton = ''' 147 String skeleton = '''
148 function $setupProgramName(programData, typesOffset) { 148 function $setupProgramName(programData, typesOffset) {
149 "use strict"; 149 "use strict";
150 if (#needsClassSupport) { 150 if (#needsClassSupport) {
151 151
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 (function() { 854 (function() {
855 var result = $array[$index]; 855 var result = $array[$index];
856 if ($check) { 856 if ($check) {
857 throw new Error( 857 throw new Error(
858 name + ": expected value of type \'$type\' at index " + ($index) + 858 name + ": expected value of type \'$type\' at index " + ($index) +
859 " but got " + (typeof result)); 859 " but got " + (typeof result));
860 } 860 }
861 return result; 861 return result;
862 })()'''; 862 })()''';
863 } 863 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/full_emitter/emitter.dart ('k') | pkg/compiler/lib/src/mirrors_used.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698