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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart

Issue 11312203: "Reverting 14829-14832" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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: sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart
index efddd1c39ba79237bbca2dd9faddd1a3fb465f16..4ef493e0de7c6d6dda472c18f9524102af38d262 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/coreimpl_patch.dart
@@ -12,9 +12,9 @@ patch class JSSyntaxRegExp {
final bool _multiLine;
final bool _ignoreCase;
- patch JSSyntaxRegExp(String pattern,
- {bool multiLine: false,
- bool ignoreCase: false})
+ patch const JSSyntaxRegExp(String pattern,
+ {bool multiLine: false,
+ bool ignoreCase: false})
: _pattern = pattern,
_multiLine = multiLine,
_ignoreCase = ignoreCase;

Powered by Google App Engine
This is Rietveld 408576698