| 57 | typedef std::list<IncludeFileRange> FileRangeList; |
| 58 | |
| 59 | struct LineFile { |
| 60 | unsigned line_number; |
| 61 | const Path file; |
| 62 | |
| 63 | LineFile(unsigned _line_number, |
| 64 | const Path &_file) |
| 65 | : line_number(_line_number), |
| 66 | file(_file) {} |
| 67 | }; |
| 68 | |
| 69 | struct ScriptFile { |
| 70 | const ScriptFile *parent; |