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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.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: sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
index b416c3fecbb98e23be5d2912a7a242f4bf5e2ac1..62c13432db4a1d12a0e888e85467b3f7ea716245 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart
@@ -550,7 +550,7 @@ class VariableNamer {
void freeName(HInstruction instruction) {
String ownName = names.ownName[instruction];
if (ownName != null) {
- RegExp regexp = const RegExp('t[0-9]+');
+ RegExp regexp = new RegExp('t[0-9]+');
ahe 2012/11/12 13:35:03 Top-level final field?
Anders Johnsen 2012/11/12 13:45:38 Done, +static.
// We check if we have already looked for temporary names
// because if we haven't, chances are the temporary we allocate
// in this block can match a phi with the same name in the

Powered by Google App Engine
This is Rietveld 408576698