summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
Diffstat (limited to 'sources')
-rw-r--r--sources/scalac/ast/printer/TextTreePrinter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scalac/ast/printer/TextTreePrinter.java b/sources/scalac/ast/printer/TextTreePrinter.java
index 9245eb8809..a3fc59bfe3 100644
--- a/sources/scalac/ast/printer/TextTreePrinter.java
+++ b/sources/scalac/ast/printer/TextTreePrinter.java
@@ -413,11 +413,11 @@ public class TextTreePrinter implements TreePrinter {
break;
case Bind(Name name, Tree t):
- print(TXT_LEFT_PAREN);
printSymbolDefinition(tree.symbol(), name);
print(Text.Space);
print(TXT_AT);
print(Text.Space);
+ print(TXT_LEFT_PAREN);
print( t );
print(TXT_RIGHT_PAREN);
printType(tree);