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

Unified Diff: client/dom/scripts/idlparser.dart

Issue 8432025: Add explicit 'super()' calls for dartc / frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/idlparser.dart
diff --git a/client/dom/scripts/idlparser.dart b/client/dom/scripts/idlparser.dart
index e0ac9c905b7c631abe5760823feaa7c5d63f1049..d9c521922a03eb5db313dd9eb89163153799cb9e 100644
--- a/client/dom/scripts/idlparser.dart
+++ b/client/dom/scripts/idlparser.dart
@@ -192,7 +192,7 @@ class IDLDictNode {
}
class IDLExtAttrs extends IDLDictNode {
- IDLExtAttrs([List attrs = const []]) {
+ IDLExtAttrs([List attrs = const []]) : super() {
setMap(attrs);
}
@@ -214,7 +214,7 @@ class IDLArgument extends IDLNode {
}
class IDLAnnotations extends IDLDictNode {
- IDLAnnotations(List annotations) {
+ IDLAnnotations(List annotations) : super() {
for (var annotation in annotations) {
map[annotation.id] = annotation;
}
@@ -225,7 +225,7 @@ class IDLAnnotations extends IDLDictNode {
class IDLAnnotation extends IDLDictNode {
String id;
- IDLAnnotation(String this.id, List args) {
+ IDLAnnotation(String this.id, List args) : super() {
setMap(args);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698