| Index: compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java b/compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java
|
| index 5c701279503e99c2e9036c5b305699c1c4a24c57..6cc122645ffec60754adc98b8ee86092ec9a7d76 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java
|
| @@ -338,15 +338,6 @@ public class DartToSourceVisitor extends ASTVisitor<Void> {
|
| }
|
|
|
| @Override
|
| - public Void visitAssertion(DartAssertion x) {
|
| - p("assert(");
|
| - accept(x.getExpression());
|
| - p(");");
|
| - nl();
|
| - return null;
|
| - }
|
| -
|
| - @Override
|
| public Void visitIfStatement(DartIfStatement x) {
|
| p("if (");
|
| accept(x.getCondition());
|
|
|