diff options
Diffstat (limited to 'src/server')
| -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, |