AstStore: {
    constants: AstConstantDef[];
    funcSources: {
        code: string;
        path: string;
    }[];
    functions: (AstFunctionDef | AstNativeFunctionDecl | AstAsmFunctionDef)[];
    sources: Source[];
    types: AstTypeDecl[];
}

Represents the storage for all AST-related data within the compiler context.