(variable: NativeCompilerBuilderVariableID)
| 111 | } |
| 112 | |
| 113 | appendQuotedString(str: string | undefined): IRStringWriter { |
| 114 | if (str === undefined) { |
| 115 | return this.append(' <null>'); |
| 116 | } else { |
| 117 | return this.append(` '${escapeIRString(str)}'`); |
| 118 | } |
no test coverage detected