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"; |