diff options
| author | Nathaniel Saxe <NathanielSaxophone@gmail.com> | 2026-01-02 12:59:09 -0500 |
|---|---|---|
| committer | Nathaniel Saxe <NathanielSaxophone@gmail.com> | 2026-01-02 12:59:09 -0500 |
| commit | eea11e9d1e3035b89351cd888b35b920a40de81b (patch) | |
| tree | d9321bffd481e5a48f54e31d33db19e9fff4b4d1 | |
| parent | 0ad323e79c56a41e0e4818c646088cce983fade4 (diff) | |
rm logs
| -rw-r--r-- | src/server/action.odin | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/action.odin b/src/server/action.odin index 72ef888..2099950 100644 --- a/src/server/action.odin +++ b/src/server/action.odin @@ -212,7 +212,6 @@ get_switch_cases_info :: proc( is_enum: bool, ok: bool, ) { - log.error(position_context.switch_stmt, position_context.switch_type_stmt) if (position_context.switch_stmt == nil && position_context.switch_type_stmt == nil) || (position_context.switch_stmt != nil && position_context.switch_stmt.cond == nil) { return nil, nil, false, false @@ -251,7 +250,6 @@ get_switch_cases_info :: proc( } } } - log.error(existing_cases) if is_enum { enum_value, was_super_enum, unwrap_ok := unwrap_enum(ast_context, position_context.switch_stmt.cond) if !unwrap_ok {return nil, nil, true, false} |