aboutsummaryrefslogtreecommitdiff
path: root/src/index
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2020-12-03 00:22:51 +0100
committerDanielGavin <danielgavin5@hotmail.com>2020-12-03 00:22:51 +0100
commit88ae69b585c12ed045eb25a104fa8d530015cd8d (patch)
tree5d21e00fbaead6ffb9113b6f905ef3ee567cfb0c /src/index
parent2c7c7ed98559c52eb4c79fcd121adc95cf56e96a (diff)
refractoring and more semantic tokens
Diffstat (limited to 'src/index')
-rw-r--r--src/index/indexer.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index/indexer.odin b/src/index/indexer.odin
index 2d80751..88e5419 100644
--- a/src/index/indexer.odin
+++ b/src/index/indexer.odin
@@ -46,7 +46,7 @@ indexer: Indexer;
lookup :: proc(name: string, scope: string) -> (Symbol, bool) {
symbol, ok := memory_index_lookup(&indexer.static_index, name, scope);
- log.infof("lookup name: %v scope: %v, symbol %v", name, scope, symbol);
+ //log.infof("lookup name: %v scope: %v, symbol %v", name, scope, symbol);
return symbol, ok;
}