Skip to content
← Back

src/semantic/symbols/array.ghul

1
namespace Semantic.Symbols is
2
use IO.Std;
3
4
use IoC;
5
use Logging;
6
use Source;
7
8
use Types.Type;
9
10
class ARRAY: GENERIC is
11
init(location: LOCATION, symbol: Symbols.Classy, element_type: Type) is
12
super.init(location, symbol, Collections.LIST[Type]([element_type]));
13
si
14
si
15
si