| 56 | }; |
| 57 | |
| 58 | static CXFile GetLocation(CXSourceLocation loc, int* idx) |
| 59 | { |
| 60 | CXFile file; |
| 61 | uint32 line; |
| 62 | uint32 column; |
| 63 | clang_getFileLocation(loc, &file, &line, &column, (uint32*)idx); |
| 64 | return file; |
| 65 | } |
| 66 | |
| 67 | static CXFile GetRange(CXSourceRange range, int* startIdx, int* endIdx) |
| 68 | { |