substituteFuncs<A extends AST> function

A substituteFuncs<A extends AST>(
  1. AST ast,
  2. Iterable<FuncDecl> from,
  3. Iterable<AST> to
)

Implementation

A substituteFuncs<A extends AST>(
        AST ast, Iterable<FuncDecl> from, Iterable<AST> to) =>
    currentContext.substituteFuncs(ast, from.toList(), to.toList()) as A;