getFunctionReturnType<T> method

ASTType<T>? getFunctionReturnType<T>(
  1. String name,
  2. ASTFunctionSignature parametersTypes,
  3. VMContext context
)

Implementation

ASTType<T>? getFunctionReturnType<T>(String name,
        ASTFunctionSignature parametersTypes, VMContext context) =>
    getFunction(name, parametersTypes, context)?.returnType as ASTType<T>?;