| Index: compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java b/compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java
|
| index ec0bb1ea7b0be5a4f305ae93a4860d02806af441..350f2a327ab7b9e7f434f45e7dbb51671c8a1d05 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java
|
| @@ -223,7 +223,7 @@ public class NegativeParserTest extends CompilerTestCase {
|
| "",
|
| "class D<X extends A, Y extends A> {",
|
| "}");
|
| - String actual = dartUnit.toDietSource().trim();
|
| + String actual = dartUnit.toSource().trim();
|
| if (!expected.equals(actual)) {
|
| System.err.println("Expected:\n" + expected);
|
| System.err.println("\nActual:\n" + actual);
|
| @@ -261,7 +261,7 @@ public class NegativeParserTest extends CompilerTestCase {
|
| "",
|
| "class C {",
|
| "}"),
|
| - dartUnit.toDietSource().trim());
|
| + dartUnit.toSource().trim());
|
| }
|
|
|
| /**
|
| @@ -290,7 +290,7 @@ public class NegativeParserTest extends CompilerTestCase {
|
| "",
|
| "class C {",
|
| "}"),
|
| - dartUnit.toDietSource().trim());
|
| + dartUnit.toSource().trim());
|
| }
|
|
|
| /**
|
|
|