* Compile this script. * This is useful to detect syntax errors in the script. * * @public * @return {this} This for chaining. * @throws {SyntaxError} If there is a syntax error in the script.
()
| 302 | * @throws {SyntaxError} If there is a syntax error in the script. |
| 303 | */ |
| 304 | compile() { |
| 305 | this._compileVM(); |
| 306 | return this; |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Get the compiled code. |
no test coverage detected