Skip to content
← Back

src/syntax/trees/expressions/literals/none.ghul

1
namespace Syntax.Trees.Expressions.Literals is
2
3
use Source
4
5
class NONE: Literal is
6
init(location: LOCATION) is
7
super.init(location, "none")
8
si
9
10
accept(visitor: Visitor) is
11
visitor.visit(self)
12
si
13
si
14
si