(builder: (type: DataFieldTypeFactory) => DataFieldTypeFactory)
| 188 | } |
| 189 | |
| 190 | setType(builder: (type: DataFieldTypeFactory) => DataFieldTypeFactory) { |
| 191 | this.type = builder(new DataFieldTypeFactory()).setContainer(this.node); |
| 192 | this.update({ |
| 193 | type: this.type, |
| 194 | }); |
| 195 | return this; |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | export class DataFieldTypeFactory extends AstFactory<DataFieldType> { |
no outgoing calls
no test coverage detected