-go-to-definitions (OGTD file format)

This commit is contained in:
gingerBill
2019-05-26 15:16:45 +01:00
parent 426c1ed6f4
commit 5697d6df74
9 changed files with 768 additions and 435 deletions
+5
View File
@@ -456,6 +456,10 @@ struct CheckerInfo {
Entity * entry_point;
PtrSet<Entity *> minimum_dependency_set;
PtrSet<isize> minimum_dependency_type_info_set;
bool allow_identifier_uses;
Array<Ast *> identifier_uses; // only used by 'odin query'
};
struct CheckerContext {
@@ -497,6 +501,7 @@ struct Checker {
Array<ProcInfo> procs_to_check;
Array<Entity *> procs_with_deferred_to_check;
CheckerContext *curr_ctx;
gbAllocator allocator;
CheckerContext init_ctx;
};