Index: pkg/dartino_compiler/lib/src/debug_registry.dart |
diff --git a/pkg/fletchc/lib/src/debug_registry.dart b/pkg/dartino_compiler/lib/src/debug_registry.dart |
similarity index 88% |
rename from pkg/fletchc/lib/src/debug_registry.dart |
rename to pkg/dartino_compiler/lib/src/debug_registry.dart |
index 4ec57d30b278f6fb3d7b9056d972e83cbf91d78d..d1f648e9a80d30980c0ba7eb06b434712d3f27ea 100644 |
--- a/pkg/fletchc/lib/src/debug_registry.dart |
+++ b/pkg/dartino_compiler/lib/src/debug_registry.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_registry; |
+library dartino_compiler.debug_registry; |
import 'package:compiler/src/universe/selector.dart' show |
Selector; |
@@ -23,11 +23,11 @@ import 'package:compiler/src/universe/use.dart' show |
DynamicUse, |
StaticUse; |
-import 'fletch_context.dart' show |
- FletchContext; |
+import 'dartino_context.dart' show |
+ DartinoContext; |
-import 'fletch_function_builder.dart' show |
- FletchFunctionBuilder; |
+import 'dartino_function_builder.dart' show |
+ DartinoFunctionBuilder; |
/// Turns off enqueuing when generating debug information. |
/// |
@@ -35,8 +35,8 @@ import 'fletch_function_builder.dart' show |
/// demand. Generating this information shouldn't interact with the |
/// enqueuer/registry/tree-shaking algorithm. |
abstract class DebugRegistry { |
- FletchContext get context; |
- FletchFunctionBuilder get functionBuilder; |
+ DartinoContext get context; |
+ DartinoFunctionBuilder get functionBuilder; |
void registerDynamicUse(Selector selector) { } |
void registerDynamicGetter(Selector selector) { } |