| 60 | class Preprocessor { |
| 61 | public: |
| 62 | Preprocessor() |
| 63 | : curLine_(1), lineLine_(0), curCond_(true) { |
| 64 | // Add predefined |
| 65 | Init(); |
| 66 | } |
| 67 | |
| 68 | ~Preprocessor() {} |
| 69 | void Finalize(TokenSequence os); |
nothing calls this directly
no outgoing calls
no test coverage detected