FuncExpr.local constructor

FuncExpr.local(
  1. FuncExpr from
)

Constructs a local function out of from.

Implementation

FuncExpr.local(FuncExpr from)
  : token = from.token,
    idParts = from.idParts,
    body = from.body,
    args = from.args,
    local = true;