First of all I love the new dot syntax and arrays that you've added with the new parser. I do think that more documentation regarding both should have been added to the user manual before the official release though. I was using the old array types in a couple of my models. The error threw me for a bit of a loop after upgrading the model file.
Just had a quick question in regards to setting a table's cell value using the new dot syntax.
What I've come up with is:
- int tempValue = 3;
- Table outputTable = reftable("tableName");
- outputTable.cell(row, col).value = tempValue;
This seems to work but I wanted to double check if this is correct. If so I was assuming that setting it up this way would work as well but it doesn't:
- int tempValue = 3;
- reftable("tableName").cell(row, col).value = tempValue;
I'm assuming that reftable is returning a treenode type and not the new Table type. This leads me to believe that there may be another way?