findVarArgs method

List<LuaObject>? findVarArgs()

Search the current scope for the special ... identifier.

Implementation

List<LuaObject>? findVarArgs() {
  return scope.findVarArgs();
}