parseNodePropertyContinued method
dynamic
parseNodePropertyContinued(
- dynamic line
Implementation
parseNodePropertyContinued(line) {
var currentNode = this.getCurrentNode();
currentNode.a += line;
// if the line doesn't end in ',' we have reached the end of the property value
// so convert the string to an array
if (line.slice(-1) != ',') {
currentNode.a = parseNumberArray(currentNode.a);
}
}