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

Unified Diff: pkg/fletchc/lib/src/fletch_compiler.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/fletch_class_builder.dart ('k') | pkg/fletchc/lib/src/fletch_function_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fletchc/lib/src/fletch_compiler.dart
diff --git a/pkg/fletchc/lib/src/fletch_compiler.dart b/pkg/fletchc/lib/src/fletch_compiler.dart
index c153c104a177f935766c85f6e187da7d5e301236..8bb1f545e100cf627dc8f692e94f294299d64504 100644
--- a/pkg/fletchc/lib/src/fletch_compiler.dart
+++ b/pkg/fletchc/lib/src/fletch_compiler.dart
@@ -21,7 +21,7 @@ import 'package:compiler/src/elements/modelx.dart' show
import 'package:compiler/src/util/uri_extras.dart' show
relativize;
-import 'compiled_function.dart';
+import 'fletch_function_builder.dart';
import 'debug_info.dart';
import 'find_position_visitor.dart';
import 'fletch_context.dart';
@@ -179,8 +179,8 @@ class FletchCompiler extends FletchCompilerHack {
if (unit == null) return null;
FindPositionVisitor visitor = new FindPositionVisitor(position, unit);
unit.accept(visitor, null);
- CompiledFunction function =
- _NO_WARN(backend).compiledFunctions[visitor.element];
+ FletchFunctionBuilder function =
+ _NO_WARN(backend).functionBuilders[visitor.element];
if (function == null) return null;
_NO_WARN(backend).ensureDebugInfo(function);
return function.debugInfo;
« no previous file with comments | « pkg/fletchc/lib/src/fletch_class_builder.dart ('k') | pkg/fletchc/lib/src/fletch_function_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698