| 5 | } |
| 6 | |
| 7 | export interface PreprocessorBinaryNode extends IPreprocessorNode { |
| 8 | type: 'binary'; |
| 9 | left: PreprocessorAstNode; |
| 10 | right: PreprocessorAstNode; |
| 11 | operator: PreprocessorLiteralNode; |
| 12 | } |
| 13 | |
| 14 | export type PreprocessorIfPart = |
| 15 | | PreprocessorIfNode |
nothing calls this directly
no outgoing calls
no test coverage detected