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

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

Issue 961493003: don't run dart gen on JS patch code (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
« no previous file with comments | « test/dart_codegen/expect/core/object.dart ('k') | test/dart_codegen/expect/core/stopwatch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..8f8a39975878b633541ad8d79ca1c75f7186d131 100644
--- a/test/dart_codegen/expect/core/regexp.dart
+++ b/test/dart_codegen/expect/core/regexp.dart
@@ -11,12 +11,8 @@ abstract class Match {
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));
+ external factory RegExp(String source,
+ {bool multiLine: false, bool caseSensitive: true});
Match firstMatch(String input);
Iterable<Match> allMatches(String input, [int start = 0]);
bool hasMatch(String input);
« no previous file with comments | « test/dart_codegen/expect/core/object.dart ('k') | test/dart_codegen/expect/core/stopwatch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698