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

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

Issue 1058653002: implement mixins in subtype checks, more codegen fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 var isolate; 1 var isolate;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class Capability extends core.Object { 4 class Capability extends core.Object {
5 Capability() { 5 Capability() {
6 return new _isolate_helper.CapabilityImpl(); 6 return new _isolate_helper.CapabilityImpl();
7 } 7 }
8 } 8 }
9 class IsolateSpawnException extends core.Object { 9 class IsolateSpawnException extends core.Object {
10 IsolateSpawnException(message) { 10 IsolateSpawnException(message) {
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 } 148 }
149 } 149 }
150 Isolate.IMMEDIATE = 0; 150 Isolate.IMMEDIATE = 0;
151 Isolate.BEFORE_NEXT_EVENT = 1; 151 Isolate.BEFORE_NEXT_EVENT = 1;
152 Isolate.AS_EVENT = 2; 152 Isolate.AS_EVENT = 2;
153 dart.defineLazyProperties(Isolate, { 153 dart.defineLazyProperties(Isolate, {
154 get _currentIsolateCache() { 154 get _currentIsolateCache() {
155 return _isolate_helper.IsolateNatives.currentIsolate; 155 return _isolate_helper.IsolateNatives.currentIsolate;
156 } 156 }
157 }); 157 });
158 class SendPort extends core.Object { 158 class SendPort extends core.Object {}
159 }
160 SendPort[dart.implements] = () => [Capability]; 159 SendPort[dart.implements] = () => [Capability];
161 class ReceivePort extends core.Object { 160 class ReceivePort extends core.Object {
162 ReceivePort() { 161 ReceivePort() {
163 return new _isolate_helper.ReceivePortImpl(); 162 return new _isolate_helper.ReceivePortImpl();
164 } 163 }
165 fromRawReceivePort(rawPort) { 164 fromRawReceivePort(rawPort) {
166 return new _isolate_helper.ReceivePortImpl.fromRawReceivePort(rawPort); 165 return new _isolate_helper.ReceivePortImpl.fromRawReceivePort(rawPort);
167 } 166 }
168 } 167 }
169 ReceivePort[dart.implements] = () => [async.Stream]; 168 ReceivePort[dart.implements] = () => [async.Stream];
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 _RemoteStackTrace[dart.implements] = () => [core.StackTrace]; 208 _RemoteStackTrace[dart.implements] = () => [core.StackTrace];
210 // Exports: 209 // Exports:
211 exports.Capability = Capability; 210 exports.Capability = Capability;
212 exports.IsolateSpawnException = IsolateSpawnException; 211 exports.IsolateSpawnException = IsolateSpawnException;
213 exports.Isolate = Isolate; 212 exports.Isolate = Isolate;
214 exports.SendPort = SendPort; 213 exports.SendPort = SendPort;
215 exports.ReceivePort = ReceivePort; 214 exports.ReceivePort = ReceivePort;
216 exports.RawReceivePort = RawReceivePort; 215 exports.RawReceivePort = RawReceivePort;
217 exports.RemoteError = RemoteError; 216 exports.RemoteError = RemoteError;
218 })(isolate || (isolate = {})); 217 })(isolate || (isolate = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698