MCPcopy Index your code
hub / github.com/ShaderFrog/glsl-parser / PreprocessorBinaryNode

Interface PreprocessorBinaryNode

src/preprocessor/preprocessor-node.ts:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5}
6
7export interface PreprocessorBinaryNode extends IPreprocessorNode {
8 type: 'binary';
9 left: PreprocessorAstNode;
10 right: PreprocessorAstNode;
11 operator: PreprocessorLiteralNode;
12}
13
14export type PreprocessorIfPart =
15 | PreprocessorIfNode

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected