Skip to content
← Back

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

1
namespace Syntax.Trees.Expressions.Literals is
2
use IO.Std;
3
4
5
use Source;
6
7
class CHARACTER: Literal is
8
init(location: LOCATION, value: string) is
9
super.init(location, value);
10
si
11
12
accept(visitor: Visitor) is
13
visitor.visit(self);
14
si
15
si
16
si