Commit cd735b4f authored by Mathias Chouet's avatar Mathias Chouet :spaghetti:
Browse files

Section Param. : added sourceNub info in Result object

Showing with 2 additions and 2 deletions
+2 -2
...@@ -110,7 +110,7 @@ export class SectionParametree extends SectionNub { ...@@ -110,7 +110,7 @@ export class SectionParametree extends SectionNub {
// (in LINK mode, proxies to target data) // (in LINK mode, proxies to target data)
variatedValues = variatedParam.paramValues; variatedValues = variatedParam.paramValues;
const res = new Result(); const res = new Result(undefined, this);
variatedValues.initValuesIterator(false); variatedValues.initValuesIterator(false);
while (variatedValues.hasNext) { while (variatedValues.hasNext) {
variatedValues.next(); variatedValues.next();
...@@ -140,7 +140,7 @@ export class SectionParametree extends SectionNub { ...@@ -140,7 +140,7 @@ export class SectionParametree extends SectionNub {
// par les appels successifs car c'est en même temps un paramètre et une variable temporaire) // par les appels successifs car c'est en même temps un paramètre et une variable temporaire)
const Y = this.getParameter("Y").v; const Y = this.getParameter("Y").v;
this._result = new Result(); this._result = new Result(undefined, this);
const re = new ResultElement(); const re = new ResultElement();
this._result.addResultElement(re); this._result.addResultElement(re);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment