(atoms: NativeCompilerBuilderAtomID[])
| 131 | this.appendVariable(variables[i]); |
| 132 | } |
| 133 | this.append(' ]'); |
| 134 | return this; |
| 135 | } |
| 136 | |
| 137 | appendAtom(atom: NativeCompilerBuilderAtomID): IRStringWriter { |
| 138 | return this.appendQuotedString(atom.identifier); |
| 139 | } |
| 140 | |
| 141 | appendAtoms(atoms: NativeCompilerBuilderAtomID[]): IRStringWriter { |
| 142 | this.append(' ['); |
| 143 | for (let i = 0; i < atoms.length; i++) { |
| 144 | if (i > 0) { |
| 145 | this.append(','); |
| 146 | } |
no test coverage detected