AstFunctionDef: {
    attributes: readonly FunctionAttribute[];
    id: number;
    kind: "function_def";
    loc: SrcInfo;
    name: AstId;
    params: readonly AstTypedParameter[];
    return: AstType | undefined;
    statements: readonly AstStatement[];
}