Scope constructor

Scope({
  1. Scope? parent,
  2. LuaObject? context,
})

Implementation

Scope({this.parent, this.context}) : depth = (parent?.depth ?? 0) + 1;