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

Unified Diff: pkg/front_end/lib/src/fasta/export.dart

Issue 2736263002: Report compile-time error instead of crashing when encountering bad parts. (Closed)
Patch Set: Created 3 years, 9 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 | pkg/front_end/lib/src/fasta/source/source_library_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/export.dart
diff --git a/pkg/front_end/lib/src/fasta/export.dart b/pkg/front_end/lib/src/fasta/export.dart
index 2d4a83783068308de1c5436b3c8260c6fe1bb6ed..78723ce8ddf2b5bd015b6fb8655ab118aa6f91d2 100644
--- a/pkg/front_end/lib/src/fasta/export.dart
+++ b/pkg/front_end/lib/src/fasta/export.dart
@@ -17,7 +17,9 @@ class Export {
final List<Combinator> combinators;
- Export(this.exporter, this.exported, this.combinators, int charOffset);
+ final int charOffset;
+
+ Export(this.exporter, this.exported, this.combinators, this.charOffset);
Uri get fileUri => exporter.fileUri;
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/source/source_library_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698