mirror of
https://github.com/github/semantic.git
synced 2024-12-22 06:11:49 +03:00
6f63463269
As @robrix pointed out, adding explicit parenthesis nodes to our ASTs bloats them with no added gain in expressivity. A pretty-printing solution should use something analogous to `showsPrec` to ensure that parentheses are printed properly.
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
(Program
|
|
(Assignment
|
|
(Identifier)
|
|
(Hash
|
|
(KeyValue
|
|
(Identifier)
|
|
(SequenceExpression
|
|
(Float)
|
|
(SequenceExpression
|
|
(Plus
|
|
(Float)
|
|
(Float))
|
|
(Float)))))))
|