Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: pkg/dartino_compiler/lib/src/dartino_registry.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « pkg/dartino_compiler/lib/src/dartino_native_descriptor.dart ('k') | pkg/dartino_compiler/lib/src/dartino_selector.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698