(accessor: string)
| 123 | } |
| 124 | |
| 125 | writeNoRef(accessor: string) { |
| 126 | return ` |
| 127 | ${this.writeTypeInfo(accessor)}; |
| 128 | ${this.write(accessor)}; |
| 129 | `; |
| 130 | } |
| 131 | |
| 132 | writeRefOrNull(accessor: string, assignStmt: (expr: string) => string) { |
| 133 | let refFlagStmt = ""; |
nothing calls this directly
no test coverage detected