diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-06-08 21:18:13 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2024-06-08 21:18:13 +0200 |
| commit | 53f42476fc2fe3455f1e899189cb904462502e8c (patch) | |
| tree | 860ea540fdeb5a46c0f83fbc08423ee53a0363a8 /src/testing/testing.odin | |
| parent | 42fefebdd512958b41948abefb2d52c1b4682aff (diff) | |
First version of selector rename.
Diffstat (limited to 'src/testing/testing.odin')
| -rw-r--r-- | src/testing/testing.odin | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index e499db5..2a08b23 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -393,7 +393,11 @@ expect_symbol_location :: proc( setup(src) defer teardown(src) - symbol_and_nodes := server.resolve_entire_file(src.document, flag) + symbol_and_nodes := server.resolve_entire_file( + src.document, + flag, + context.temp_allocator, + ) ok := true |