diff options
| author | Bradley Lewis <22850972+BradLewis@users.noreply.github.com> | 2026-01-27 20:26:02 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-27 20:26:02 +1100 |
| commit | 22f7394233da7b68ce78d370d62105456bdaecb0 (patch) | |
| tree | c53cf0ea039699ad78e237b96d7eb882960369f0 /src/testing/testing.odin | |
| parent | a243fa37d7735dc8777d445d2d3c9965f92f9c02 (diff) | |
| parent | aa993b9b366c79b978fb0901fdd75295f9cc0426 (diff) | |
Merge pull request #1263 from pnarimani/overload_resolution
Procedure Overload Resolution
Diffstat (limited to 'src/testing/testing.odin')
| -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 373ef62..2013f79 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -346,7 +346,7 @@ expect_definition_locations :: proc(t: ^testing.T, src: ^Source, expect_location setup(src) defer teardown(src) - locations, ok := server.get_definition_location(src.document, src.position) + locations, ok := server.get_definition_location(src.document, src.position, &src.config) if !ok { log.error("Failed get_definition_location") |