typer.ads (199B)
with Types; use Types;
package Typer is
type Typer is record
AST : Declaration_Vectors.Vector;
end record;
function Init (AST : Declaration_Vectors.Vector) return Typer;
end Typer;
nightshadeThe nightshade programming language, compiler and tools (WIP) | |
| Log | Files | Refs | README |
typer.ads (199B)
with Types; use Types;
package Typer is
type Typer is record
AST : Declaration_Vectors.Vector;
end record;
function Init (AST : Declaration_Vectors.Vector) return Typer;
end Typer;