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

Unified Diff: lib/runtime/dart/_native_typed_data.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/_js_helper.js ('k') | lib/runtime/dart/async.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_native_typed_data.js
diff --git a/lib/runtime/dart/_native_typed_data.js b/lib/runtime/dart/_native_typed_data.js
index 86de558b6552b7aea9fa0313c3f39ac18b4afb04..950bd88bd52858e839374785b907cf315c7b5328 100644
--- a/lib/runtime/dart/_native_typed_data.js
+++ b/lib/runtime/dart/_native_typed_data.js
@@ -1465,7 +1465,6 @@ var math = dart.import(math);
dart.defineNamedConstructor(NativeFloat32x4, '_truncated');
dart.setSignature(NativeFloat32x4, {
methods: () => ({
- toString: dart.functionType(core.String, []),
'+': dart.functionType(typed_data.Float32x4, [typed_data.Float32x4]),
'unary-': dart.functionType(typed_data.Float32x4, []),
'-': dart.functionType(typed_data.Float32x4, [typed_data.Float32x4]),
@@ -1683,7 +1682,6 @@ var math = dart.import(math);
dart.defineNamedConstructor(NativeInt32x4, '_truncated');
dart.setSignature(NativeInt32x4, {
methods: () => ({
- toString: dart.functionType(core.String, []),
'|': dart.functionType(typed_data.Int32x4, [typed_data.Int32x4]),
'&': dart.functionType(typed_data.Int32x4, [typed_data.Int32x4]),
'^': dart.functionType(typed_data.Int32x4, [typed_data.Int32x4]),
@@ -1804,7 +1802,6 @@ var math = dart.import(math);
dart.defineNamedConstructor(NativeFloat64x2, '_doubles');
dart.setSignature(NativeFloat64x2, {
methods: () => ({
- toString: dart.functionType(core.String, []),
'+': dart.functionType(typed_data.Float64x2, [typed_data.Float64x2]),
'unary-': dart.functionType(typed_data.Float64x2, []),
'-': dart.functionType(typed_data.Float64x2, [typed_data.Float64x2]),
« no previous file with comments | « lib/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/async.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698