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

Unified Diff: runtime/lib/integers_patch.dart

Issue 2655223005: Minor adjustments to vm patch files (Closed)
Patch Set: Created 3 years, 11 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 | runtime/lib/object_patch.dart » ('j') | runtime/lib/object_patch.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/integers_patch.dart
diff --git a/runtime/lib/integers_patch.dart b/runtime/lib/integers_patch.dart
index 6f8b38456ef0ffaf38d27c9f9282cacfe3a00549..a65ced8bf1498cc59f48742a698914f581a4c10a 100644
--- a/runtime/lib/integers_patch.dart
+++ b/runtime/lib/integers_patch.dart
@@ -42,7 +42,7 @@
@patch static int parse(String source,
{ int radix,
- int onError(String str) }) {
+ int onError(String source) }) {
if (source == null) throw new ArgumentError("The source must not be null");
if (source.isEmpty) return _throwFormatException(onError, source, 0, radix);
if (radix == null || radix == 10) {
« no previous file with comments | « no previous file | runtime/lib/object_patch.dart » ('j') | runtime/lib/object_patch.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698