You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//this.paramOperators = params.map(p => new ParamManagerOperator(this, this._validateParam(ScriptParamToParam(p)))); // always make sure we use Param internally
53
54
// Disable validation because its old
54
-
this.paramOperators=params.map(p=>newParamManagerOperator(this,p));// always make sure we use Param internally
55
+
this.paramOperators=params
56
+
.map(
57
+
p=>{
58
+
constparamDef=(pinstanceofScriptParam) ? p : newScriptParam().fromData(p);
59
+
returnnewParamManagerOperator(this,paramDef);// always make sure we use Param internally
60
+
});
55
61
this.paramOperators.forEach(p=>this[p.name]=p)// set param access
console.info(`Runner::_executionStartRunInScope()[in execution context]: Setting up ParamManager in scope with params "${JSON.stringify(paramDefsWithValues)}"`);
0 commit comments