You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
The text was updated successfully, but these errors were encountered:
It seems that arrayrecords are not being parsed properly. I'm using
tl v0.13.1
andvscode-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:
There is only standard vscode completion:
Comparing with regular arrays:
The text was updated successfully, but these errors were encountered: