diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2020-12-03 00:22:51 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2020-12-03 00:22:51 +0100 |
| commit | 88ae69b585c12ed045eb25a104fa8d530015cd8d (patch) | |
| tree | 5d21e00fbaead6ffb9113b6f905ef3ee567cfb0c /src/index | |
| parent | 2c7c7ed98559c52eb4c79fcd121adc95cf56e96a (diff) | |
refractoring and more semantic tokens
Diffstat (limited to 'src/index')
| -rw-r--r-- | src/index/indexer.odin | 2 |
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; } |