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

Unified Diff: lib/runtime/dart/isolate.js

Issue 1150623004: Fix names in named parameter lists (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/runtime/dart/core.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/isolate.js
diff --git a/lib/runtime/dart/isolate.js b/lib/runtime/dart/isolate.js
index cf15a92909870638a9e02e760b9d079bccb13882..30a7b5ee0da4cb879cd939ef75051d98b6f41726 100644
--- a/lib/runtime/dart/isolate.js
+++ b/lib/runtime/dart/isolate.js
@@ -156,7 +156,7 @@ var async = dart.import(async);
}
}
dart.setSignature(Isolate, {
- constructors: () => ({Isolate: [Isolate, [SendPort], {auseCapabilit: Capability, erminateCapabilit: Capability}]}),
+ constructors: () => ({Isolate: [Isolate, [SendPort], {pauseCapability: Capability, terminateCapability: Capability}]}),
methods: () => ({
pause: [Capability, [], [Capability]],
[_pause]: [dart.void, [Capability]],
@@ -170,8 +170,8 @@ var async = dart.import(async);
removeErrorListener: [dart.void, [SendPort]]
}),
statics: () => ({
- spawn: [async.Future$(Isolate), [dart.functionType(dart.void, [dart.bottom]), core.Object], {ause: core.bool}],
- spawnUri: [async.Future$(Isolate), [core.Uri, core.List$(core.String), core.Object], {ause: core.bool, ackageRoo: core.Uri}]
+ spawn: [async.Future$(Isolate), [dart.functionType(dart.void, [dart.bottom]), core.Object], {paused: core.bool}],
+ spawnUri: [async.Future$(Isolate), [core.Uri, core.List$(core.String), core.Object], {paused: core.bool, packageRoot: core.Uri}]
}),
names: ['spawn', 'spawnUri']
});
« no previous file with comments | « lib/runtime/dart/core.js ('k') | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698