overextended / cfxlua-vscode

https://marketplace.visualstudio.com/items?itemName=overextended.cfxlua-vscode
MIT License
51 stars 23 forks source link

feat(plugin): prevent diagnostic errors from in unpacking #7

Closed D4isDAVID closed 2 years ago

D4isDAVID commented 2 years ago

Prevent diagnostic errors from in unpacking.

An example for it would be

local a, b, c in t

which would be equivalent for

local a, b, c = t.a, t.b, t.c