Index: pkg/dartino_compiler/lib/src/dartino_registry.dart |
diff --git a/pkg/fletchc/lib/src/fletch_registry.dart b/pkg/dartino_compiler/lib/src/dartino_registry.dart |
similarity index 91% |
rename from pkg/fletchc/lib/src/fletch_registry.dart |
rename to pkg/dartino_compiler/lib/src/dartino_registry.dart |
index 4ed7f3c9a93424b3d1ad8cc273de388bac19b908..55125bdf32435dd9f13a4b642d7d304f308f542d 100644 |
--- a/pkg/fletchc/lib/src/fletch_registry.dart |
+++ b/pkg/dartino_compiler/lib/src/dartino_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.fletch_codegen_registry; |
+library dartino_compiler.dartino_codegen_registry; |
import 'package:compiler/src/compiler.dart' show |
GlobalDependencyRegistry; |
@@ -30,11 +30,11 @@ import 'package:compiler/src/dart_types.dart' show |
DartType, |
InterfaceType; |
-import 'fletch_compiler_implementation.dart' show |
- FletchCompilerImplementation; |
+import 'dartino_compiler_implementation.dart' show |
+ DartinoCompilerImplementation; |
-import 'fletch_enqueuer.dart' show |
- FletchEnqueuer; |
+import 'dartino_enqueuer.dart' show |
+ DartinoEnqueuer; |
/// Represents ways a function can used as a closure. See also [Closurization] |
/// in [./dynamic_call_enqueuer.dart]. |
@@ -73,10 +73,10 @@ enum ClosureKind { |
superTearOff, |
} |
-class FletchRegistry { |
- final FletchEnqueuer world; |
+class DartinoRegistry { |
+ final DartinoEnqueuer world; |
- FletchRegistry(FletchCompilerImplementation compiler) |
+ DartinoRegistry(DartinoCompilerImplementation compiler) |
: world = compiler.enqueuer.codegen; |
void registerStaticUse(StaticUse staticUse) { |