(variables: NativeCompilerBuilderVariableID[])
| 115 | return this.append(' <null>'); |
| 116 | } else { |
| 117 | return this.append(` '${escapeIRString(str)}'`); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | appendVariable(variable: NativeCompilerBuilderVariableID): IRStringWriter { |
| 122 | return this.append(` @${variable.variable}`); |
| 123 | } |
| 124 | |
| 125 | appendVariables(variables: NativeCompilerBuilderVariableID[]): IRStringWriter { |
| 126 | this.append(' ['); |
| 127 | for (let i = 0; i < variables.length; i++) { |
| 128 | if (i > 0) { |
| 129 | this.append(','); |
| 130 | } |
no test coverage detected