fix: correct test assertions for helixql highlights

Fixed column positions in test assertions to match actual parser output:
- Line 6: moved ^ to point at ID type instead of colon delimiter
- Line 98: moved ^ to point at IN keyword instead of name variable
This commit is contained in:
Ben Woodward 2025-12-12 18:14:10 +11:00
parent 5d2914b940
commit c2632c3b2d

View file

@ -5,7 +5,7 @@ N::User {
// ^ @type.definition
INDEX id: ID,
//^ @keyword
// ^ @type.builtin
// ^ @type.builtin
name: String,
//^ @property
// ^ @type.builtin
@ -97,7 +97,7 @@ QUERY followUser(fromId: ID, toId: ID) =>
QUERY createMultipleUsers(names: [String]) =>
FOR name IN names {
//^ @keyword
// ^ @keyword
// ^ @keyword
user <- AddN<User>({name: name})
}
RETURN NONE