| Index: compiler/javatests/com/google/dart/compiler/parser/AbstractParserTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/parser/AbstractParserTest.java b/compiler/javatests/com/google/dart/compiler/parser/AbstractParserTest.java
|
| index cb49d74204c02bade8ecc827068f168a1ef707fb..7bc8f840c1e74a502b95a790580c2fdb20dd1a57 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/parser/AbstractParserTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/parser/AbstractParserTest.java
|
| @@ -158,8 +158,8 @@ public abstract class AbstractParserTest extends CompilerTestCase {
|
|
|
| @Override
|
| protected DartParser makeParser(ParserContext context) {
|
| - Set<String> set = new HashSet<String>();
|
| - set.add("prefix");
|
| - return new DartParser(context, set);
|
| + Set<String> prefixes = new HashSet<String>();
|
| + prefixes.add("prefix");
|
| + return new DartParser(context, prefixes, false);
|
| }
|
| }
|
|
|