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

Unified Diff: runtime/lib/errors_patch.dart

Issue 2951453002: [kernel] Make fasta call a new constructor on FallThroughError (Closed)
Patch Set: Created 3 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
Index: runtime/lib/errors_patch.dart
diff --git a/runtime/lib/errors_patch.dart b/runtime/lib/errors_patch.dart
index b9d1cca2cbeb7126ce0d114edcca52a5e37492d2..422e05ecb8444fba41ec1047217d96da4e8452f7 100644
--- a/runtime/lib/errors_patch.dart
+++ b/runtime/lib/errors_patch.dart
@@ -113,7 +113,10 @@ class _CastError extends Error implements CastError {
@patch
class FallThroughError {
- FallThroughError._create(this._url, this._line);
+ @patch
+ FallThroughError._create(String url, int line)
+ : _url = url,
+ _line = line;
static _throwNew(int case_clause_pos) native "FallThroughError_throwNew";

Powered by Google App Engine
This is Rietveld 408576698