Skip to content
← Back

src/semantic/symbols/reference.ghul

1
namespace Semantic.Symbols is
2
use Source;
3
use Types.Type;
4
5
class REFERENCE: GENERIC is
6
init(location: LOCATION, symbol: Symbols.Classy, element_type: Type) is
7
super.init(location, symbol, Collections.LIST[Type]([element_type]));
8
si
9
si
10
si