stmt: group node* definitions together
This commit is contained in:
parent
90ce6af6dd
commit
8f921436ed
16
node.go
16
node.go
@ -74,6 +74,12 @@ func convert(n_ node.Node) (string, error) {
|
||||
|
||||
return ret, nil
|
||||
|
||||
case *node.Identifier:
|
||||
return n.Value, nil
|
||||
|
||||
case Literal:
|
||||
return n.Value, nil
|
||||
|
||||
//
|
||||
// stmt
|
||||
//
|
||||
@ -388,16 +394,6 @@ func convert(n_ node.Node) (string, error) {
|
||||
// TODO this may need to use `:=`
|
||||
return lvalue + " = " + rvalue, nil
|
||||
|
||||
//
|
||||
// special literals
|
||||
//
|
||||
|
||||
case Literal:
|
||||
return n.Value, nil
|
||||
|
||||
case *node.Identifier:
|
||||
return n.Value, nil
|
||||
|
||||
//
|
||||
// expr
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user