()
| 81 | }; |
| 82 | |
| 83 | toQueryString() { |
| 84 | return this.lexerResult.valid |
| 85 | ? R.map( |
| 86 | l => |
| 87 | l.lexeme.transform |
| 88 | ? l.lexeme.transform(l.value) |
| 89 | : l.value, |
| 90 | this.lexerResult.lexemes |
| 91 | ).join(' ') |
| 92 | : ''; |
| 93 | } |
| 94 | |
| 95 | toStructure() { |
| 96 | if (!this.isValid || !this.syntaxerResult.tree) { |
no outgoing calls
no test coverage detected