FuncExpr.named constructor

FuncExpr.named(
  1. Token token, {
  2. required List<Stmt> body,
  3. required List<DeclArg> args,
  4. required List<RawExpr> idParts,
})

Construct a function with an id.

Implementation

FuncExpr.named(
  this.token, {
  required this.body,
  required this.args,
  required this.idParts,
}) : local = false;