()
| 1057 | } |
| 1058 | |
| 1059 | func (n *Node) Elements() []*Node { |
| 1060 | list := n.ElementList() |
| 1061 | if list != nil { |
| 1062 | return list.Nodes |
| 1063 | } |
| 1064 | return nil |
| 1065 | } |
| 1066 | |
| 1067 | func (n *Node) PostfixToken() *Node { |
| 1068 | switch n.Kind { |
no test coverage detected