()
| 116 | } |
| 117 | |
| 118 | boolean(): this { |
| 119 | assert(this._data._kind === 'initial', 'Field type was already set'); |
| 120 | |
| 121 | this._data = { |
| 122 | field: this._data.field, |
| 123 | ...BOOLEAN_FIELD, |
| 124 | _kind: 'finished', |
| 125 | }; |
| 126 | |
| 127 | return this; |
| 128 | } |
| 129 | |
| 130 | bigInteger(): this { |
| 131 | assert(this._data._kind === 'initial', 'Field type was already set'); |
no outgoing calls
no test coverage detected