| Index: pkg/dartino_compiler/lib/src/lazy_field_initializer_codegen.dart
|
| diff --git a/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart b/pkg/dartino_compiler/lib/src/lazy_field_initializer_codegen.dart
|
| similarity index 72%
|
| rename from pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
|
| rename to pkg/dartino_compiler/lib/src/lazy_field_initializer_codegen.dart
|
| index cd7aa1e02c7de54674ddb599cec603a58033eebc..18404acc0bc43abff080b091a277bf84d1ec9f2d 100644
|
| --- a/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
|
| +++ b/pkg/dartino_compiler/lib/src/lazy_field_initializer_codegen.dart
|
| @@ -2,7 +2,7 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE.md file.
|
|
|
| -library fletchc.lazy_field_initializer_codegen;
|
| +library dartino_compiler.lazy_field_initializer_codegen;
|
|
|
| import 'package:compiler/src/elements/elements.dart';
|
| import 'package:compiler/src/resolution/tree_elements.dart' show
|
| @@ -10,24 +10,24 @@ import 'package:compiler/src/resolution/tree_elements.dart' show
|
|
|
| import 'package:compiler/src/tree/tree.dart';
|
|
|
| -import 'fletch_context.dart';
|
| +import 'dartino_context.dart';
|
|
|
| -import 'fletch_function_builder.dart' show
|
| - FletchFunctionBuilder;
|
| +import 'dartino_function_builder.dart' show
|
| + DartinoFunctionBuilder;
|
|
|
| -import 'fletch_registry.dart' show
|
| - FletchRegistry;
|
| +import 'dartino_registry.dart' show
|
| + DartinoRegistry;
|
|
|
| import 'closure_environment.dart';
|
|
|
| import 'codegen_visitor.dart';
|
|
|
| class LazyFieldInitializerCodegen
|
| - extends CodegenVisitor with FletchRegistryMixin {
|
| - final FletchRegistry registry;
|
| + extends CodegenVisitor with DartinoRegistryMixin {
|
| + final DartinoRegistry registry;
|
|
|
| - LazyFieldInitializerCodegen(FletchFunctionBuilder functionBuilder,
|
| - FletchContext context,
|
| + LazyFieldInitializerCodegen(DartinoFunctionBuilder functionBuilder,
|
| + DartinoContext context,
|
| TreeElements elements,
|
| this.registry,
|
| ClosureEnvironment closureEnvironment,
|
|
|