* Variable : $ Name
()
| 2084 | * Variable : $ Name |
| 2085 | */ |
| 2086 | parseVariable() { |
| 2087 | const start = this._lexer.token; |
| 2088 | this.expectToken(_tokenKind.TokenKind.DOLLAR); |
| 2089 | return this.node(start, { |
| 2090 | kind: _kinds.Kind.VARIABLE, |
| 2091 | name: this.parseName() |
| 2092 | }); |
| 2093 | } |
| 2094 | /** |
| 2095 | * ``` |
| 2096 | * SelectionSet : { Selection+ } |
no test coverage detected