-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Labels
bugSomething isn't workingSomething isn't working
Description
It seems that arrayrecords are not being parsed properly. I'm using tl v0.13.1 and vscode-teal v0.8.3.
The snippet (pasted below) runs just fine, but there are no completions for a.arrayrecord. There are no errors in vscode either.
Here is the snippet:
local record A
record B
name: string
end
record BArray
{B}
end
array: {B}
arrayrecord: BArray
end
local a: A = {
array = {
{
name = 'A.array[1]'
}
},
arrayrecord = {
{
name = 'A.arrayrecord[1]'
}
}
}
print(a.array[1].name)
print(a.arrayrecord[1].name)
There is only standard vscode completion:
Comparing with regular arrays:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working

