| 1 | export interface IPreprocessorNode { |
| 2 | // Only used on preprocessor nodes |
| 3 | wsStart?: string; |
| 4 | wsEnd?: string; |
| 5 | } |
| 6 | |
| 7 | export interface PreprocessorBinaryNode extends IPreprocessorNode { |
| 8 | type: 'binary'; |
nothing calls this directly
no outgoing calls
no test coverage detected