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

Unified Diff: test/dart_codegen/expect/core/regexp.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 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
Index: test/dart_codegen/expect/core/regexp.dart
diff --git a/test/dart_codegen/expect/core/regexp.dart b/test/dart_codegen/expect/core/regexp.dart
index c933ec0f16b0fdd0732736a18c51cf2acdb72614..6d3e3ffd0786d46e3fc696c0e4125e9352aef3fd 100644
--- a/test/dart_codegen/expect/core/regexp.dart
+++ b/test/dart_codegen/expect/core/regexp.dart
@@ -1,27 +1,21 @@
part of dart.core;
-
-abstract class Match {
- int get start;
- int get end;
- String group(int group);
- String operator [](int group);
- List<String> groups(List<int> groupIndices);
- int get groupCount;
- String get input;
- Pattern get pattern;
+ abstract class Match {int get start;
+ int get end;
+ String group(int group);
+ String operator [](int group);
+ List<String> groups(List<int> groupIndices);
+ int get groupCount;
+ String get input;
+ Pattern get pattern;
}
-abstract class RegExp implements Pattern {
- factory RegExp(String source,
- {bool multiLine: false, bool caseSensitive: true}) => ((__x33) => DDC$RT
- .cast(__x33, dynamic, RegExp, "CastExact",
- """line 130, column 8 of dart:core/regexp.dart: """,
- __x33 is RegExp, true))(new JSSyntaxRegExp(source,
- multiLine: multiLine, caseSensitive: caseSensitive));
- Match firstMatch(String input);
- Iterable<Match> allMatches(String input, [int start = 0]);
- bool hasMatch(String input);
- String stringMatch(String input);
- String get pattern;
- bool get isMultiLine;
- bool get isCaseSensitive;
+ abstract class RegExp implements Pattern {factory RegExp(String source, {
+bool multiLine : false, bool caseSensitive : true}
+) => ((__x33) => DDC$RT.cast(__x33, dynamic, RegExp, "CastExact", """line 130, column 8 of dart:core/regexp.dart: """, __x33 is RegExp, true))(new JSSyntaxRegExp(source, multiLine: multiLine, caseSensitive: caseSensitive));
+ Match firstMatch(String input);
+ Iterable<Match> allMatches(String input, [int start = 0]);
+ bool hasMatch(String input);
+ String stringMatch(String input);
+ String get pattern;
+ bool get isMultiLine;
+ bool get isCaseSensitive;
}

Powered by Google App Engine
This is Rietveld 408576698