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

Unified Diff: pkg/front_end/tool/fasta_perf.dart

Issue 2981693002: Start copying resolution/inference data from front end to analyzer ASTs. (Closed)
Patch Set: Address code review comments. Created 3 years, 5 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/front_end/tool/fasta_perf.dart
diff --git a/pkg/front_end/tool/fasta_perf.dart b/pkg/front_end/tool/fasta_perf.dart
index d84834a95c186db02d3e91939c846bdb48d674e1..04174936ede1bb05386b2f61b174d7bded2c0651 100644
--- a/pkg/front_end/tool/fasta_perf.dart
+++ b/pkg/front_end/tool/fasta_perf.dart
@@ -194,7 +194,8 @@ parseFull(Uri uri, List<int> source) {
// Note: AstBuilder doesn't build compilation-units or classes, only method
// bodies. So this listener is not feature complete.
class _PartialAstBuilder extends AstBuilder {
- _PartialAstBuilder(Uri uri) : super(null, null, null, null, null, true, uri);
+ _PartialAstBuilder(Uri uri)
+ : super(null, null, null, null, null, true, true, uri);
// Note: this method converts the body to kernel, so we skip that here.
@override

Powered by Google App Engine
This is Rietveld 408576698