BlackTower

Results 6 issues of BlackTower

Unity dones't support `.lua` entensions, so all lua files end up with `.lua.txt` extension in unity project. Is it possibel to add support for `.lua.txt` file extension, or at least...

For now, teal compiler just drops any comments data from type info. I hope these comments can also be preserved. I have 2 use cases: * I want to show...

feature request

In simple case, the compiler can catch the error correctly: ```lua local interface I end local record A is I end local function test(a: I): I return a end local...

semantics

Giving: ```lua local record mod end function mod:foo1() self:foo2() -- error: invalid key 'foo2' end function mod:foo2() end ``` It'd be nice that teal can support usage before declaration for...

feature request

We are maintaining an in-house vscode teal plugin. To make the plugin support necessary features e.g., `go to definition`/`find references`/etc, we feel that current `TypeInfo` collected by teal compiler is...

For now, it takes quite a long time for our vscode plugin to get the check results after users edits, since every edit will trigger a teal check, and since...

feature request