Index: pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart |
diff --git a/pkg/fletchc/lib/src/debug_info_constructor_codegen.dart b/pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart |
similarity index 88% |
rename from pkg/fletchc/lib/src/debug_info_constructor_codegen.dart |
rename to pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart |
index 69dcd0bb52b5a9d98cb8ddb0311d645f62ed5008..c1e83feb73cecfa09e881685c0989232d9fd0727 100644 |
--- a/pkg/fletchc/lib/src/debug_info_constructor_codegen.dart |
+++ b/pkg/dartino_compiler/lib/src/debug_info_constructor_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.debug_info_constructor_codegen; |
+library dartino_compiler.debug_info_constructor_codegen; |
import 'package:compiler/src/elements/elements.dart'; |
import 'package:compiler/src/universe/selector.dart' show |
@@ -21,19 +21,19 @@ import 'bytecode_assembler.dart'; |
import 'closure_environment.dart'; |
import 'codegen_visitor.dart'; |
-import 'fletch_function_builder.dart' show |
- FletchFunctionBuilder; |
+import 'dartino_function_builder.dart' show |
+ DartinoFunctionBuilder; |
-import 'fletch_class_builder.dart' show |
- FletchClassBuilder; |
+import 'dartino_class_builder.dart' show |
+ DartinoClassBuilder; |
-import 'fletch_registry.dart' show |
- FletchRegistry; |
+import 'dartino_registry.dart' show |
+ DartinoRegistry; |
import 'debug_registry.dart' show |
DebugRegistry; |
-import 'fletch_context.dart'; |
+import 'dartino_context.dart'; |
import 'constructor_codegen.dart'; |
import 'lazy_field_initializer_codegen.dart'; |
import 'debug_info_lazy_field_initializer_codegen.dart'; |
@@ -42,21 +42,21 @@ import 'debug_info.dart'; |
class DebugInfoConstructorCodegen extends ConstructorCodegen |
with DebugRegistry { |
final DebugInfo debugInfo; |
- final FletchCompilerImplementation compiler; |
+ final DartinoCompilerImplementation compiler; |
DebugInfoConstructorCodegen(this.debugInfo, |
- FletchFunctionBuilder functionBuilder, |
- FletchContext context, |
+ DartinoFunctionBuilder functionBuilder, |
+ DartinoContext context, |
TreeElements elements, |
ClosureEnvironment closureEnvironment, |
ConstructorElement constructor, |
- FletchClassBuilder classBuilder, |
+ DartinoClassBuilder classBuilder, |
this.compiler) |
: super(functionBuilder, context, elements, null, |
closureEnvironment, constructor, classBuilder); |
LazyFieldInitializerCodegen lazyFieldInitializerCodegenFor( |
- FletchFunctionBuilder function, |
+ DartinoFunctionBuilder function, |
FieldElement field) { |
TreeElements elements = field.resolvedAst.elements; |
return new DebugInfoLazyFieldInitializerCodegen( |