Index: pkg/dartino_compiler/lib/src/debug_info_function_codegen.dart |
diff --git a/pkg/fletchc/lib/src/debug_info_function_codegen.dart b/pkg/dartino_compiler/lib/src/debug_info_function_codegen.dart |
similarity index 92% |
rename from pkg/fletchc/lib/src/debug_info_function_codegen.dart |
rename to pkg/dartino_compiler/lib/src/debug_info_function_codegen.dart |
index 4cb0353a0de97bf8c07c5782385f1f4486e27260..809412bc263c70a5100c6acef0dc9d15dd4d8d2b 100644 |
--- a/pkg/fletchc/lib/src/debug_info_function_codegen.dart |
+++ b/pkg/dartino_compiler/lib/src/debug_info_function_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_function_codegen; |
+library dartino_compiler.debug_info_function_codegen; |
import 'package:compiler/src/elements/elements.dart'; |
import 'package:compiler/src/resolution/tree_elements.dart'; |
@@ -19,23 +19,23 @@ 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 'debug_registry.dart' show |
DebugRegistry; |
-import 'fletch_context.dart'; |
+import 'dartino_context.dart'; |
import 'function_codegen.dart'; |
import 'debug_info.dart'; |
class DebugInfoFunctionCodegen extends FunctionCodegen with DebugRegistry { |
- final FletchCompilerImplementation compiler; |
+ final DartinoCompilerImplementation compiler; |
final DebugInfo debugInfo; |
DebugInfoFunctionCodegen(this.debugInfo, |
- FletchFunctionBuilder functionBuilder, |
- FletchContext context, |
+ DartinoFunctionBuilder functionBuilder, |
+ DartinoContext context, |
TreeElements elements, |
ClosureEnvironment closureEnvironment, |
FunctionElement function, |