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

Unified Diff: samples/markdown/html_renderer.dart

Issue 11410033: Make RegExp's constructor non-const. (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: samples/markdown/html_renderer.dart
diff --git a/samples/markdown/html_renderer.dart b/samples/markdown/html_renderer.dart
index 943613d9727c3487d0dd82aba7535d8a96a0119a..148b5bf2ee99f664a6af7b55093e2ea08bba6743 100644
--- a/samples/markdown/html_renderer.dart
+++ b/samples/markdown/html_renderer.dart
@@ -6,7 +6,7 @@ String renderToHtml(List<Node> nodes) => new HtmlRenderer().render(nodes);
/// Translates a parsed AST to HTML.
class HtmlRenderer implements NodeVisitor {
- static const _BLOCK_TAGS = const RegExp(
+ static const _BLOCK_TAGS = new RegExp(
'blockquote|h1|h2|h3|h4|h5|h6|hr|p|pre');
StringBuffer buffer;

Powered by Google App Engine
This is Rietveld 408576698