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

Unified Diff: lib/runtime/dart/_isolate_helper.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/_internal.js ('k') | lib/runtime/dart/_js_helper.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_isolate_helper.js
diff --git a/lib/runtime/dart/_isolate_helper.js b/lib/runtime/dart/_isolate_helper.js
index 997c4f16d7110a5d65f65ff43039a3dbb320cdee..67352b8ab0e385c5d5d8decd4fabf608bb118b44 100644
--- a/lib/runtime/dart/_isolate_helper.js
+++ b/lib/runtime/dart/_isolate_helper.js
@@ -165,7 +165,7 @@ var async = dart.import(async);
}
}
dart.setSignature(_Serializer, {
- constructors: () => ({_Serializer: [_Serializer, [], {erializeSendPort: core.Object}]}),
+ constructors: () => ({_Serializer: [_Serializer, [], {serializeSendPorts: core.Object}]}),
methods: () => ({
serialize: [core.Object, [core.Object]],
unsupported: [dart.void, [core.Object], [core.String]],
@@ -379,7 +379,7 @@ var async = dart.import(async);
}
}
dart.setSignature(_Deserializer, {
- constructors: () => ({_Deserializer: [_Deserializer, [], {djustSendPort: core.Object}]}),
+ constructors: () => ({_Deserializer: [_Deserializer, [], {adjustSendPorts: core.Object}]}),
methods: () => ({
deserialize: [core.Object, [core.Object]],
isPrimitive: [core.bool, [core.Object]],
@@ -1432,7 +1432,7 @@ var async = dart.import(async);
fromRawReceivePort: [ReceivePortImpl, [isolate.RawReceivePort]]
}),
methods: () => ({
- listen: [async.StreamSubscription, [dart.functionType(dart.void, [dart.bottom])], {nErro: core.Function, nDon: dart.functionType(dart.void, []), ancelOnErro: core.bool}],
+ listen: [async.StreamSubscription, [dart.functionType(dart.void, [dart.bottom])], {onError: core.Function, onDone: dart.functionType(dart.void, []), cancelOnError: core.bool}],
close: [dart.void, []]
})
});
« no previous file with comments | « lib/runtime/dart/_internal.js ('k') | lib/runtime/dart/_js_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698