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

Unified Diff: pkg/dartino_compiler/lib/src/debug_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/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) { }

Powered by Google App Engine
This is Rietveld 408576698