|
|
@ -3886,17 +3886,21 @@ void outputTree(oop node, int depth) |
|
|
|
case Undefined: |
|
|
|
return; |
|
|
|
case String: |
|
|
|
printSpace(depth); |
|
|
|
printf("<%s>\n", (get(node, String, value))); |
|
|
|
return; |
|
|
|
case Map: |
|
|
|
break; |
|
|
|
case Symbol: |
|
|
|
printSpace(depth); |
|
|
|
printf("<%s>\n", get(node, Symbol, name)); |
|
|
|
return; |
|
|
|
case Integer: |
|
|
|
printSpace(depth); |
|
|
|
printf("<%lli>\n", getInteger(node)); |
|
|
|
return; |
|
|
|
case Float: |
|
|
|
printSpace(depth); |
|
|
|
printf("<%Lf>\n", getFloat(node)); |
|
|
|
return; |
|
|
|
default: |
|
|
|