Skip to content

TypeInfoFn

Declaration

TypeInfoFn :: struct #base TypeInfo #compiler {
    name: string;
    args: []TypeInfoFnArg; 
    ret_type: *TypeInfo;
    is_vargs: bool;
}

Description

Detailed information about function types.

Members

  • name Function name.
  • args Slice of argument type infos.
  • ret_type Return type info.
  • is_vargs True when function has variable argument list.

Declared in: _builtin.bl