diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2021-03-14 15:35:36 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2021-03-14 15:35:36 +0100 |
| commit | fa73dfc75230f17e475490bcbe6117d4dfd6c00b (patch) | |
| tree | b4596a4fcfd37168014a064e8da09691700a76d9 /src | |
| parent | 41fe85dc3a369c17016afa1aee717f442142c3bf (diff) | |
forgot to remove map
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/completion.odin | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index 762c36c..8d0a4df 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -815,27 +815,6 @@ get_type_switch_Completion :: proc (ast_context: ^AstContext, position_context: list.items = items[:]; } -keyword_map: map[string]bool = { - "int" = true, - "uint" = true, - "string" = true, - "u64" = true, - "f32" = true, - "f64" = true, - "i64" = true, - "i32" = true, - "bool" = true, - "rawptr" = true, - "any" = true, - "u32" = true, - "true" = true, - "false" = true, - "nil" = true, - "byte" = true, - "u8" = true, - "i8" = true, -}; - bitset_operators: map[string]bool = { "|" = true, "&" = true, |