mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Add test case
This commit is contained in:
parent
2a80f5e1d1
commit
bd19a9779e
1 changed files with 11 additions and 0 deletions
|
@ -331,4 +331,15 @@ TEST_CASE_FIXTURE(Fixture, "find_expr_ancestry")
|
|||
CHECK(ancestry.back()->is<AstExprFunction>());
|
||||
}
|
||||
|
||||
TEST_CASE_FIXTURE(BuiltinsFixture, "find_binding_at_position_global_start_of_file")
|
||||
{
|
||||
check("local x = string.char(1)");
|
||||
const Position pos(0, 12);
|
||||
|
||||
std::optional<Binding> binding = findBindingAtPosition(*getMainModule(), *getMainSourceModule(), pos);
|
||||
|
||||
REQUIRE(binding);
|
||||
CHECK_EQ(binding->location, Location{Position{0, 0}, Position{0, 0}});
|
||||
}
|
||||
|
||||
TEST_SUITE_END();
|
||||
|
|
Loading…
Add table
Reference in a new issue