(source, options)
| 1860 | return document; |
| 1861 | } |
| 1862 | function parseValue(source, options) { |
| 1863 | const parser = new Parser(source, options); |
| 1864 | parser.expectToken(_tokenKind.TokenKind.SOF); |
| 1865 | const value = parser.parseValueLiteral(false); |
| 1866 | parser.expectToken(_tokenKind.TokenKind.EOF); |
| 1867 | return value; |
| 1868 | } |
| 1869 | function parseConstValue(source, options) { |
| 1870 | const parser = new Parser(source, options); |
| 1871 | parser.expectToken(_tokenKind.TokenKind.SOF); |
no test coverage detected