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

Side by Side Diff: lib/runtime/dart/isolate.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/core.js ('k') | lib/runtime/dart/math.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 isolate = dart.defineLibrary(isolate, {}); 1 dart.library('dart/isolate', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core',
3 var _isolate_helper = dart.lazyImport(_isolate_helper); 3 'dart/async'
4 var async = dart.import(async); 4 ], /* Lazy imports */[
5 (function(exports, core, _isolate_helper, async) { 5 'dart/_isolate_helper'
6 ], function(exports, core, async, _isolate_helper) {
6 'use strict'; 7 'use strict';
7 class Capability extends core.Object { 8 class Capability extends core.Object {
8 static new() { 9 static new() {
9 return new _isolate_helper.CapabilityImpl(); 10 return new _isolate_helper.CapabilityImpl();
10 } 11 }
11 } 12 }
12 dart.setSignature(Capability, { 13 dart.setSignature(Capability, {
13 constructors: () => ({new: [Capability, []]}) 14 constructors: () => ({new: [Capability, []]})
14 }); 15 });
15 class IsolateSpawnException extends core.Object { 16 class IsolateSpawnException extends core.Object {
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 constructors: () => ({_RemoteStackTrace: [_RemoteStackTrace, [core.String]]} ) 253 constructors: () => ({_RemoteStackTrace: [_RemoteStackTrace, [core.String]]} )
253 }); 254 });
254 // Exports: 255 // Exports:
255 exports.Capability = Capability; 256 exports.Capability = Capability;
256 exports.IsolateSpawnException = IsolateSpawnException; 257 exports.IsolateSpawnException = IsolateSpawnException;
257 exports.Isolate = Isolate; 258 exports.Isolate = Isolate;
258 exports.SendPort = SendPort; 259 exports.SendPort = SendPort;
259 exports.ReceivePort = ReceivePort; 260 exports.ReceivePort = ReceivePort;
260 exports.RawReceivePort = RawReceivePort; 261 exports.RawReceivePort = RawReceivePort;
261 exports.RemoteError = RemoteError; 262 exports.RemoteError = RemoteError;
262 })(isolate, core, _isolate_helper, async); 263 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/core.js ('k') | lib/runtime/dart/math.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698