Skip to content
← Back

src/semantic/symbols/pointer.ghul

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