* Writes a statement to the current label's statement list. * * @param statement A statement to write.
(statement)
| 104220 | * @param statement A statement to write. |
| 104221 | */ |
| 104222 | function writeStatement(statement) { |
| 104223 | if (statement) { |
| 104224 | if (!statements) { |
| 104225 | statements = [statement]; |
| 104226 | } |
| 104227 | else { |
| 104228 | statements.push(statement); |
| 104229 | } |
| 104230 | } |
| 104231 | } |
| 104232 | /** |
| 104233 | * Writes an Assign operation to the current label's statement list. |
| 104234 | * |
no test coverage detected