diff options
Diffstat (limited to 'src/testing')
| -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 |