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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 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
« no previous file with comments | « lib/runtime/dart/_js_embedded_names.js ('k') | lib/runtime/dart/_js_primitives.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 var _js_helper = dart.defineLibrary(_js_helper, {}); 1 dart.library('dart/_js_helper', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core',
3 var collection = dart.import(collection); 3 'dart/collection',
4 var _interceptors = dart.lazyImport(_interceptors); 4 'dart/_foreign_helper'
5 var _foreign_helper = dart.import(_foreign_helper); 5 ], /* Lazy imports */[
6 (function(exports, core, collection, _interceptors, _foreign_helper) { 6 'dart/_interceptors'
7 ], function(exports, core, collection, _foreign_helper, _interceptors) {
7 'use strict'; 8 'use strict';
8 class NoThrows extends core.Object { 9 class NoThrows extends core.Object {
9 NoThrows() { 10 NoThrows() {
10 } 11 }
11 } 12 }
12 dart.setSignature(NoThrows, { 13 dart.setSignature(NoThrows, {
13 constructors: () => ({NoThrows: [NoThrows, []]}) 14 constructors: () => ({NoThrows: [NoThrows, []]})
14 }); 15 });
15 class NoInline extends core.Object { 16 class NoInline extends core.Object {
16 NoInline() { 17 NoInline() {
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1194 exports.getFallThroughError = getFallThroughError; 1195 exports.getFallThroughError = getFallThroughError;
1195 exports.Creates = Creates; 1196 exports.Creates = Creates;
1196 exports.Returns = Returns; 1197 exports.Returns = Returns;
1197 exports.JSName = JSName; 1198 exports.JSName = JSName;
1198 exports.TypeErrorImplementation = TypeErrorImplementation; 1199 exports.TypeErrorImplementation = TypeErrorImplementation;
1199 exports.CastErrorImplementation = CastErrorImplementation; 1200 exports.CastErrorImplementation = CastErrorImplementation;
1200 exports.FallThroughErrorImplementation = FallThroughErrorImplementation; 1201 exports.FallThroughErrorImplementation = FallThroughErrorImplementation;
1201 exports.RuntimeError = RuntimeError; 1202 exports.RuntimeError = RuntimeError;
1202 exports.random64 = random64; 1203 exports.random64 = random64;
1203 exports.jsonEncodeNative = jsonEncodeNative; 1204 exports.jsonEncodeNative = jsonEncodeNative;
1204 })(_js_helper, core, collection, _interceptors, _foreign_helper); 1205 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_js_embedded_names.js ('k') | lib/runtime/dart/_js_primitives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698