FuncExpr.local constructor
FuncExpr.local(
- 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;