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

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

Issue 1144303003: Use signature inheritance when method types are unchanged (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Remove empty signatures 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 d2ea54a36fdc4d74d3632333cc5bf2d9cd45da89..b755db7f88d64ae799dd211fc3db416f0b13678e 100644
--- a/lib/runtime/dart/_isolate_helper.js
+++ b/lib/runtime/dart/_isolate_helper.js
@@ -1287,10 +1287,7 @@ var async = dart.import(async);
}
_NativeJsSendPort[dart.implements] = () => [isolate.SendPort];
dart.setSignature(_NativeJsSendPort, {
- methods: () => ({
- send: dart.functionType(dart.void, [dart.dynamic]),
- '==': dart.functionType(core.bool, [dart.dynamic])
- })
+ methods: () => ({send: dart.functionType(dart.void, [dart.dynamic])})
});
class _WorkerSendPort extends _BaseSendPort {
_WorkerSendPort(workerId, isolateId, receivePortId) {
@@ -1318,10 +1315,7 @@ var async = dart.import(async);
}
_WorkerSendPort[dart.implements] = () => [isolate.SendPort];
dart.setSignature(_WorkerSendPort, {
- methods: () => ({
- send: dart.functionType(dart.void, [dart.dynamic]),
- '==': dart.functionType(core.bool, [dart.dynamic])
- })
+ methods: () => ({send: dart.functionType(dart.void, [dart.dynamic])})
});
let _handler = Symbol('_handler');
class RawReceivePortImpl extends core.Object {
« 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