()
| 53 | } |
| 54 | |
| 55 | toString() { |
| 56 | if (this.namespace) { |
| 57 | return `${this.namespace}.${this.identifier}` |
| 58 | } |
| 59 | return this.identifier |
| 60 | } |
| 61 | |
| 62 | merge(other: Partial<StructName>) { |
| 63 | return new StructName(other.identifier || this.identifier, other.namespace || this.namespace) |
no outgoing calls