MCPcopy Create free account
hub / github.com/ShaderFrog/glsl-parser / ClassExpectation

Interface ClassExpectation

error.d.ts:39–50  ·  view source on GitHub ↗

One of the specified symbols is expected in the parse position.

Source from the content-addressed store, hash-verified

37
38/** One of the specified symbols is expected in the parse position. */
39interface ClassExpectation {
40 type: 'class';
41 /** List of symbols and symbol ranges expected in the parse position. */
42 parts: (string[] | string)[];
43 /**
44 * If `true`, meaning of `parts` is inverted: symbols that NOT expected in
45 * the parse position.
46 */
47 inverted: boolean;
48 /** If `true`, symbols of any case is expected. `text` in that case in lower case */
49 ignoreCase: boolean;
50}
51
52/** Any symbol is expected in the parse position. */
53interface AnyExpectation {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected