* Uses the configured parser * @param text {string | Source} * @param options {ParseOptions} * @returns {DocumentNode}
(text: string | Source, options?: ParseOptions)
| 198 | * @returns {DocumentNode} |
| 199 | */ |
| 200 | public parse(text: string | Source, options?: ParseOptions): DocumentNode { |
| 201 | return this._parser(text, options || this._parseOptions); |
| 202 | } |
| 203 | /** |
| 204 | * get completion for the given uri and matching schema |
| 205 | * @param uri |
no outgoing calls