* @desc Get the maximum loop size String. * @returns {String} result
()
| 251 | * @returns {String} result |
| 252 | */ |
| 253 | _getLoopMaxString() { |
| 254 | return ( |
| 255 | this.loopMaxIterations ? |
| 256 | ` ${ parseInt(this.loopMaxIterations) };` : |
| 257 | ' 1000;' |
| 258 | ); |
| 259 | } |
| 260 | |
| 261 | _processConstants() { |
| 262 | if (!this.constants) return ''; |