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

Unified Diff: pkg/dart2js_incremental/lib/library_updater.dart

Issue 875803003: Fix wrong type annotation in incremental compiler. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/library_updater.dart
diff --git a/pkg/dart2js_incremental/lib/library_updater.dart b/pkg/dart2js_incremental/lib/library_updater.dart
index b048c1ed6446c3d0b208238adba426324fe64cf7..d2f43620be251f939d4c60ab49ba1367a5e9a6ba 100644
--- a/pkg/dart2js_incremental/lib/library_updater.dart
+++ b/pkg/dart2js_incremental/lib/library_updater.dart
@@ -68,7 +68,7 @@ import 'package:compiler/src/js_emitter/js_emitter.dart' show
import 'package:compiler/src/js_emitter/model.dart' show
Class,
- Member;
+ Method;
import 'package:compiler/src/js_emitter/program_builder.dart' show
ProgramBuilder;
@@ -933,7 +933,7 @@ if (this.pendingStubs) {
}
jsAst.Node computeMethodUpdateJs(Element element) {
- Member member = new ProgramBuilder(compiler, namer, emitter)
+ Method member = new ProgramBuilder(compiler, namer, emitter)
.buildMethodHackForIncrementalCompilation(element);
if (member == null) {
compiler.internalError(element, '${element.runtimeType}');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698