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

Unified Diff: pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.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_info_constructor_codegen.dart
diff --git a/pkg/fletchc/lib/src/debug_info_constructor_codegen.dart b/pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart
similarity index 88%
rename from pkg/fletchc/lib/src/debug_info_constructor_codegen.dart
rename to pkg/dartino_compiler/lib/src/debug_info_constructor_codegen.dart
index 69dcd0bb52b5a9d98cb8ddb0311d645f62ed5008..c1e83feb73cecfa09e881685c0989232d9fd0727 100644
--- a/pkg/fletchc/lib/src/debug_info_constructor_codegen.dart
+++ b/pkg/dartino_compiler/lib/src/debug_info_constructor_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_constructor_codegen;
+library dartino_compiler.debug_info_constructor_codegen;
import 'package:compiler/src/elements/elements.dart';
import 'package:compiler/src/universe/selector.dart' show
@@ -21,19 +21,19 @@ 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 'fletch_class_builder.dart' show
- FletchClassBuilder;
+import 'dartino_class_builder.dart' show
+ DartinoClassBuilder;
-import 'fletch_registry.dart' show
- FletchRegistry;
+import 'dartino_registry.dart' show
+ DartinoRegistry;
import 'debug_registry.dart' show
DebugRegistry;
-import 'fletch_context.dart';
+import 'dartino_context.dart';
import 'constructor_codegen.dart';
import 'lazy_field_initializer_codegen.dart';
import 'debug_info_lazy_field_initializer_codegen.dart';
@@ -42,21 +42,21 @@ import 'debug_info.dart';
class DebugInfoConstructorCodegen extends ConstructorCodegen
with DebugRegistry {
final DebugInfo debugInfo;
- final FletchCompilerImplementation compiler;
+ final DartinoCompilerImplementation compiler;
DebugInfoConstructorCodegen(this.debugInfo,
- FletchFunctionBuilder functionBuilder,
- FletchContext context,
+ DartinoFunctionBuilder functionBuilder,
+ DartinoContext context,
TreeElements elements,
ClosureEnvironment closureEnvironment,
ConstructorElement constructor,
- FletchClassBuilder classBuilder,
+ DartinoClassBuilder classBuilder,
this.compiler)
: super(functionBuilder, context, elements, null,
closureEnvironment, constructor, classBuilder);
LazyFieldInitializerCodegen lazyFieldInitializerCodegenFor(
- FletchFunctionBuilder function,
+ DartinoFunctionBuilder function,
FieldElement field) {
TreeElements elements = field.resolvedAst.elements;
return new DebugInfoLazyFieldInitializerCodegen(
« no previous file with comments | « pkg/dartino_compiler/lib/src/debug_info.dart ('k') | pkg/dartino_compiler/lib/src/debug_info_function_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698