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

Unified Diff: lib/runtime/dart/convert.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/collection.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/convert.js
diff --git a/lib/runtime/dart/convert.js b/lib/runtime/dart/convert.js
index 52a4cbda25730bea021ede93c66604d894d90cf2..4d041cdc5a1237af33304598d7c64333cfe83fbc 100644
--- a/lib/runtime/dart/convert.js
+++ b/lib/runtime/dart/convert.js
@@ -261,6 +261,9 @@ var convert;
dart.defineNamedConstructor(ByteConversionSink, 'withCallback');
dart.defineNamedConstructor(ByteConversionSink, 'from');
class ByteConversionSinkBase extends ByteConversionSink {
+ ByteConversionSinkBase() {
+ super.ByteConversionSink();
+ }
addSlice(chunk, start, end, isLast) {
this.add(chunk[core.$sublist](start, end));
if (isLast)
« no previous file with comments | « lib/runtime/dart/collection.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698