Index: lib/compiler/implementation/ssa/variable_allocator.dart |
diff --git a/lib/compiler/implementation/ssa/variable_allocator.dart b/lib/compiler/implementation/ssa/variable_allocator.dart |
index 1f16c6ff8cf11b1aeb86734e5312b721cb32f92d..e115ced83201da3edc6384544d0ecce791b12ef6 100644 |
--- a/lib/compiler/implementation/ssa/variable_allocator.dart |
+++ b/lib/compiler/implementation/ssa/variable_allocator.dart |
@@ -389,7 +389,7 @@ class VariableNames { |
/** Returns a fresh variable with the given prefix. */ |
static String computeFreshWithPrefix(String prefix, |
Map<Element, String> parameterNames) { |
- Set<String> parameters = new Set<String>.from(parameterNames.getValues()); |
+ Set<String> parameters = new Set<String>.from(parameterNames.values); |
String name = '${prefix}0'; |
int i = 1; |
while (parameters.contains(name)) name = '$prefix${i++}'; |