()
| 1700 | } |
| 1701 | func (m *UnaryNode) NodeType() string { return "Unary" } |
| 1702 | func (m *UnaryNode) String() string { |
| 1703 | w := NewDefaultWriter() |
| 1704 | m.WriteDialect(w) |
| 1705 | return w.String() |
| 1706 | } |
| 1707 | func (m *UnaryNode) WriteDialect(w DialectWriter) { |
| 1708 | switch m.Operator.T { |
| 1709 | case lex.TokenNegate: |
nothing calls this directly
no test coverage detected