| 15 | }; |
| 16 | |
| 17 | struct ScannerToken |
| 18 | { |
| 19 | int type; |
| 20 | long intValue; |
| 21 | InlineString stringValue; |
| 22 | FileLocation fileLocation; |
| 23 | |
| 24 | static ScannerToken ID( const InlineString& value, const FileLocation& location = FileLocation() ); |
| 25 | static ScannerToken FromTokenType( int type, const FileLocation& location = FileLocation() ); |
| 26 | }; |
| 27 | |
| 28 | enum PreprocessorScanResult |
| 29 | { |
nothing calls this directly
no test coverage detected