(_expr: cs.ToDoExpression)
| 226 | protected abstract writeDeconstructDeclaration(expr: cs.DeconstructDeclaration): void; |
| 227 | |
| 228 | protected writeToDoExpression(_expr: cs.ToDoExpression) { |
| 229 | this.write('/* TODO */'); |
| 230 | } |
| 231 | |
| 232 | protected writeIdentifier(expr: cs.Identifier | string) { |
| 233 | let name: string; |