diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-15 08:56:52 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-24 20:35:20 -0400 |
| commit | e4804807bb7c7a26b2bff10919d719a1a430870f (patch) | |
| tree | 116985fc1454378d4a5f01fc7859043a69336ab5 /src/testing | |
| parent | be08855c0a96ffff4f577fa5ac703853422ca153 (diff) | |
Introduce a builder for `SymbolStructValue` and add docs and comments to
struct hover
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 473eaf9..29fbd6f 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -225,7 +225,7 @@ expect_completion_details :: proc(t: ^testing.T, src: ^Source, trigger_character for completion, j in completion_list.items { if expect_detail == completion.detail { flags[i] += 1 - } + } } } |