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

Unified Diff: pkg/dartino_compiler/lib/src/function_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/function_codegen.dart
diff --git a/pkg/fletchc/lib/src/function_codegen.dart b/pkg/dartino_compiler/lib/src/function_codegen.dart
similarity index 90%
rename from pkg/fletchc/lib/src/function_codegen.dart
rename to pkg/dartino_compiler/lib/src/function_codegen.dart
index 2f9e4d676e6cda049d33c18616f68153e2411a62..543cb2aaadd87c5416537bd828f9e2b1ae65a5e1 100644
--- a/pkg/fletchc/lib/src/function_codegen.dart
+++ b/pkg/dartino_compiler/lib/src/function_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.function_codegen;
+library dartino_compiler.function_codegen;
import 'package:compiler/src/resolution/tree_elements.dart' show
TreeElements;
@@ -10,24 +10,24 @@ import 'package:compiler/src/resolution/tree_elements.dart' show
import 'package:compiler/src/elements/elements.dart';
import 'package:compiler/src/tree/tree.dart';
-import 'fletch_context.dart';
+import 'dartino_context.dart';
-import 'fletch_function_builder.dart' show
- FletchFunctionBuilder;
+import 'dartino_function_builder.dart' show
+ DartinoFunctionBuilder;
-import 'fletch_registry.dart' show
- FletchRegistry;
+import 'dartino_registry.dart' show
+ DartinoRegistry;
import 'closure_environment.dart';
import 'codegen_visitor.dart';
-class FunctionCodegen extends CodegenVisitor with FletchRegistryMixin {
- final FletchRegistry registry;
+class FunctionCodegen extends CodegenVisitor with DartinoRegistryMixin {
+ final DartinoRegistry registry;
int setterResultSlot;
- FunctionCodegen(FletchFunctionBuilder functionBuilder,
- FletchContext context,
+ FunctionCodegen(DartinoFunctionBuilder functionBuilder,
+ DartinoContext context,
TreeElements elements,
this.registry,
ClosureEnvironment closureEnvironment,
« no previous file with comments | « pkg/dartino_compiler/lib/src/find_position_visitor.dart ('k') | pkg/dartino_compiler/lib/src/guess_configuration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698