* Selection : * - Field * - FragmentSpread * - InlineFragment
()
| 2113 | * - InlineFragment |
| 2114 | */ |
| 2115 | parseSelection() { |
| 2116 | return this.peek(_tokenKind.TokenKind.SPREAD) ? this.parseFragment() : this.parseField(); |
| 2117 | } |
| 2118 | /** |
| 2119 | * Field : Alias? Name Arguments? Directives? SelectionSet? |
| 2120 | * |
nothing calls this directly
no test coverage detected