(field: Field)
| 263 | } |
| 264 | |
| 265 | fieldLength(field: Field): number { |
| 266 | |
| 267 | return field.name.length + this.argumentsLength(field) + |
| 268 | ': '.length + html.useIdentifierLength(field) + ' '.length + |
| 269 | this.deprecatedLength(field); |
| 270 | } |
| 271 | |
| 272 | fields(type: SchemaType): string { |
| 273 |
no test coverage detected