(val)
| 538 | // Query helpers |
| 539 | |
| 540 | function isPosition(val) { |
| 541 | return typeof val == "number" || typeof val == "object" && |
| 542 | typeof val.line == "number" && typeof val.ch == "number"; |
| 543 | } |
| 544 | |
| 545 | // Baseline query document validation |
| 546 | function invalidDoc(doc) { |
no outgoing calls
no test coverage detected
searching dependent graphs…