Index: runtime/lib/errors_patch.dart |
diff --git a/runtime/lib/errors_patch.dart b/runtime/lib/errors_patch.dart |
index af2293f52b36ace34a32ecdf01f80943d18982eb..69ae2195426a26a25a71c4346cb0d61cdf0e77a3 100644 |
--- a/runtime/lib/errors_patch.dart |
+++ b/runtime/lib/errors_patch.dart |
@@ -212,13 +212,17 @@ class _InternalError { |
final int _invocation_type; |
@patch |
- NoSuchMethodError(Object this._receiver, |
- Symbol this._memberName, |
- List this._arguments, |
- Map<Symbol, dynamic> this._namedArguments, |
+ NoSuchMethodError(Object receiver, |
+ Symbol memberName, |
+ List positionalArguments, |
+ Map<Symbol, dynamic> namedArguments, |
[List existingArgumentNames = null]) |
- : this._existingArgumentNames = existingArgumentNames, |
- this._invocation_type = -1; |
+ : _receiver = receiver, |
+ _memberName = memberName, |
+ _arguments = positionalArguments, |
+ _namedArguments = namedArguments, |
+ _existingArgumentNames = existingArgumentNames, |
+ _invocation_type = -1; |
// This constructor seems to be called with either strings or |
// values read from another NoSuchMethodError. |