(name: string)
| 330 | } |
| 331 | |
| 332 | setName(name: string) { |
| 333 | this.name = name; |
| 334 | this.update({ |
| 335 | name: this.name, |
| 336 | }); |
| 337 | return this; |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | export class EnumFieldFactory extends AstFactory<EnumField> { |
no outgoing calls
no test coverage detected