diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-10-29 16:27:51 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-10-29 16:27:51 -0400 |
| commit | e8f079fea8cbc87e1e007c15954d90e1c8e34e15 (patch) | |
| tree | a8c93e303ab5b5275cbcec54fbedf25fbe2ce5c8 /tests | |
| parent | cce38ecb7d006b22bc0b8fb7c483561a477ebd22 (diff) | |
Add complete types for untyped expr as we now show full values for constants
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/hover_test.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hover_test.odin b/tests/hover_test.odin index c3d6729..391ff60 100644 --- a/tests/hover_test.odin +++ b/tests/hover_test.odin @@ -4506,7 +4506,7 @@ ast_hover_float_binary_expr :: proc(t: ^testing.T) { } `, } - test.expect_hover(t, &source, "test.bar: float") + test.expect_hover(t, &source, "test.bar: f64") } @(test) @@ -5332,7 +5332,7 @@ ast_hover_complex_number_literal :: proc(t: ^testing.T) { `, } - test.expect_hover(t, &source, "test.foo: complex") + test.expect_hover(t, &source, "test.foo: complex128") } @(test) @@ -5345,7 +5345,7 @@ ast_hover_quaternion_literal :: proc(t: ^testing.T) { `, } - test.expect_hover(t, &source, "test.foo: quaternion") + test.expect_hover(t, &source, "test.foo: quaternion256") } /* |