(atomIndex)
| 19186 | return this.parent.atomTypeDefinitions |
| 19187 | } |
| 19188 | getGetter(atomIndex) { |
| 19189 | const atomToNativeJavascriptTypeParser = this.getAtomConstructor().parserFunctionName |
| 19190 | return `get ${this.atomTypeId}() { |
| 19191 | return ${atomToNativeJavascriptTypeParser ? atomToNativeJavascriptTypeParser + `(this.getAtom(${atomIndex}))` : `this.getAtom(${atomIndex})`} |
| 19192 | }` |
| 19193 | } |
| 19194 | getCatchAllGetter(atomIndex) { |
| 19195 | const atomToNativeJavascriptTypeParser = this.getAtomConstructor().parserFunctionName |
| 19196 | return `get ${this.atomTypeId}() { |
no test coverage detected