| Index: pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart
|
| diff --git a/pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart b/pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart
|
| index dbce6e48c7cdbb4b27bb200315ff54adfab6875b..ebd1738ae54c0de89538d9834fd3bb38bf72783c 100644
|
| --- a/pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart
|
| +++ b/pkg/fletchc/lib/src/debug_info_lazy_field_initializer_codegen.dart
|
| @@ -4,19 +4,15 @@
|
|
|
| library fletchc.debug_info_lazy_field_initializer_codegen;
|
|
|
| -import 'package:compiler/src/dart2jslib.dart' show
|
| - MessageKind,
|
| - Registry;
|
| -
|
| import 'package:compiler/src/elements/elements.dart';
|
| -import 'package:compiler/src/resolution/resolution.dart';
|
| +import 'package:compiler/src/resolution/tree_elements.dart';
|
| import 'package:compiler/src/tree/tree.dart';
|
| -import 'package:compiler/src/universe/universe.dart';
|
| +import 'package:compiler/src/universe/selector.dart';
|
|
|
| import 'package:compiler/src/dart_types.dart' show
|
| DartType;
|
|
|
| -import 'package:compiler/src/util/util.dart' show
|
| +import 'package:compiler/src/diagnostics/spannable.dart' show
|
| Spannable;
|
|
|
| import 'fletch_context.dart';
|
| @@ -44,11 +40,10 @@ class DebugInfoLazyFieldInitializerCodegen
|
| FletchFunctionBuilder functionBuilder,
|
| FletchContext context,
|
| TreeElements elements,
|
| - FletchRegistry registry,
|
| ClosureEnvironment closureEnvironment,
|
| FieldElement field,
|
| this.compiler)
|
| - : super(functionBuilder, context, elements, registry,
|
| + : super(functionBuilder, context, elements, null,
|
| closureEnvironment, field);
|
|
|
| void recordDebugInfo(Node node) {
|
| @@ -78,14 +73,14 @@ class DebugInfoLazyFieldInitializerCodegen
|
| super.invokeMethod(node, selector);
|
| }
|
|
|
| - void invokeGetter(Node node, Selector selector) {
|
| + void invokeGetter(Node node, Name name) {
|
| recordDebugInfo(node);
|
| - super.invokeGetter(node, selector);
|
| + super.invokeGetter(node, name);
|
| }
|
|
|
| - void invokeSetter(Node node, Selector selector) {
|
| + void invokeSetter(Node node, Name name) {
|
| recordDebugInfo(node);
|
| - super.invokeSetter(node, selector);
|
| + super.invokeSetter(node, name);
|
| }
|
|
|
| void invokeFactory(Node node, int constId, int arity) {
|
|
|