| 108 | FastVector<CodeRange> codeSourceRange; |
| 109 | |
| 110 | struct ModuleInfo |
| 111 | { |
| 112 | ModuleInfo(){} |
| 113 | ModuleInfo(const char* name, const char* data, unsigned stream, CodeRange range): name(name), data(data), stream(stream), range(range){} |
| 114 | const char *name; |
| 115 | const char *data; |
| 116 | unsigned stream; |
| 117 | CodeRange range; |
| 118 | }; |
| 119 | FastVector<ModuleInfo> moduleStack; |
| 120 | }; |