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

Unified Diff: runtime/lib/string_patch.dart

Issue 2705593002: Fix various nits in VM patch files. (Closed)
Patch Set: Address comments and issues found during testing. Created 3 years, 10 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 | « runtime/lib/string_buffer_patch.dart ('k') | runtime/lib/typed_data_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/string_patch.dart
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
index f046d8fd4e1c6c998c102cd62983b0d905bccde6..a4bb7e7cb9a4d52cfa2a3603861786f339a9e26c 100644
--- a/runtime/lib/string_patch.dart
+++ b/runtime/lib/string_patch.dart
@@ -1287,9 +1287,7 @@ class _ExternalTwoByteString extends _StringBase implements String {
class _StringMatch implements Match {
- const _StringMatch(int this.start,
- String this.input,
- String this.pattern);
+ const _StringMatch(this.start, this.input, this.pattern);
int get end => start + pattern.length;
String operator[](int g) => group(g);
« no previous file with comments | « runtime/lib/string_buffer_patch.dart ('k') | runtime/lib/typed_data_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698