| Index: sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart
|
| index 4906aaaaaf0a1b4780e0234bb492cd6977a940dc..55dd5856d4322ba5c2be12c83e1902c7e976636e 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/dart_codegen.dart
|
| @@ -337,6 +337,10 @@ class ASTEmitter extends tree.Visitor<dynamic, Expression> {
|
| return new This();
|
| }
|
|
|
| + Expression visitSuper(tree.Super exp) {
|
| + return new Super();
|
| + }
|
| +
|
| Expression visitLiteralList(tree.LiteralList exp) {
|
| return new LiteralList(
|
| exp.values.map(visitExpression).toList(growable: false),
|
|
|