diff options
| author | Damian Tarnawski <gthetarnav@gmail.com> | 2024-07-29 19:38:00 +0200 |
|---|---|---|
| committer | Damian Tarnawski <gthetarnav@gmail.com> | 2024-07-29 19:38:00 +0200 |
| commit | 3e0591f9acee54dc18bdbad682f1a09d0d2d761d (patch) | |
| tree | e7ffb685ecfb7e080614dc826b952dd243968119 | |
| parent | 945233b31418f9d2adcc7012310b3c378add029c (diff) | |
Remove tests I didn't want to commit
| -rw-r--r-- | tests/hover_test.odin | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index 75de7ef..99a14b9 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -251,31 +251,6 @@ ast_hover_on_union_assertion_with_or_return :: proc(t: ^testing.T) { test.expect_hover(t, &source, "test.num: int") } - - -// @(test) -// ast_hover_on_array_variable :: proc(t: ^testing.T) { -// source := test.Source { -// main = `package test -// Vec :: [2]f32 -// vec: Ve{*}c -// `, -// } - -// test.expect_hover(t, &source, "test.Vec: [2]f32") -// } - -// @(test) -// ast_hover_on_array_infer_length_variable :: proc(t: ^testing.T) { -// source := test.Source { -// main = `package test -// ve{*}c :: [?]f32{1, 2, 3} -// `, -// } - -// test.expect_hover(t, &source, "test.vec: [3]f32") -// } - @(test) ast_hover_struct_field_selector_completion :: proc(t: ^testing.T) { |