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

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

Issue 1122883002: Do not suppress implicit constructors that need a super call. (Closed) Base URL: https://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 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 43498b22a5023f52773dd9a289092cf05fd0f4af..e4db8688b00fe111af1fc62176b30fc4a0c193f1 100644
--- a/lib/runtime/dart/_native_typed_data.js
+++ b/lib/runtime/dart/_native_typed_data.js
@@ -576,6 +576,9 @@ var _native_typed_data;
dart.defineNamedConstructor(NativeByteData, 'view');
let _setRangeFast = Symbol('_setRangeFast');
class NativeTypedArray extends NativeTypedData {
+ NativeTypedArray() {
+ super.NativeTypedData();
+ }
[_setRangeFast](start, end, source, skipCount) {
let targetLength = this.length;
this[_checkIndex](start, dart.notNull(targetLength) + 1);
« 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