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

Unified Diff: pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart

Issue 1170123004: Rename CompiledFunction to FletchFunctionBuilder and CompiledClass to FletchClassBuilder. (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « pkg/fletchc/lib/src/function_codegen.dart ('k') | pkg/fletchc/lib/stack_trace.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
diff --git a/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart b/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
index de8364e6239e5fb7d73b19b7be17fdfed15a2528..abb4fa56856bf650364c47657d1af0497adc77c6 100644
--- a/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
+++ b/pkg/fletchc/lib/src/lazy_field_initializer_codegen.dart
@@ -14,8 +14,8 @@ import 'package:compiler/src/tree/tree.dart';
import 'fletch_context.dart';
-import 'compiled_function.dart' show
- CompiledFunction;
+import 'fletch_function_builder.dart' show
+ FletchFunctionBuilder;
import 'closure_environment.dart';
@@ -23,13 +23,13 @@ import 'codegen_visitor.dart';
class LazyFieldInitializerCodegen extends CodegenVisitor {
- LazyFieldInitializerCodegen(CompiledFunction compiledFunction,
+ LazyFieldInitializerCodegen(FletchFunctionBuilder functionBuilder,
FletchContext context,
TreeElements elements,
Registry registry,
ClosureEnvironment closureEnvironment,
FieldElement field)
- : super(compiledFunction, context, elements, registry,
+ : super(functionBuilder, context, elements, registry,
closureEnvironment, field);
FieldElement get field => element;
« no previous file with comments | « pkg/fletchc/lib/src/function_codegen.dart ('k') | pkg/fletchc/lib/stack_trace.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698