Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java |
| =================================================================== |
| --- compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java (revision 13091) |
| +++ compiler/java/com/google/dart/compiler/ast/DartToSourceVisitor.java (working copy) |
| @@ -673,7 +673,9 @@ |
| @Override |
| public Void visitPropertyAccess(DartPropertyAccess x) { |
| - accept(x.getQualifier()); |
| + if (x.getQualifier() != null) { |
| + accept(x.getQualifier()); |
|
Brian Wilkerson
2012/10/02 13:14:23
It might have been better for the invocation of 'a
|
| + } |
| if (x.isCascade()) { |
| p(".."); |
| } else { |