FourierTransformer

Results 22 issues of FourierTransformer

I feel like in Lua/Teal folks put comments about any relevant info above the method itself (either as LDoc or just as a comment). Maybe we can check the lines...

enhancement

Right now as you type functions from the global scope (ex: `math.random`) Teal is only aware of the types in use and not any of the function arguments. If we...

enhancement

Currently the function signature LSP method just shows the function signature when you type a `(`, but it can also highlight and identify where you are in the function signature....

enhancement

Since we are using tree-sitter we know what is being typed when a completion request comes in. There's a note in `misc_handlers.tl` to _not_ try and provide type resolution, but...

enhancement

The type needs to be resolved inside the brackets first and then passed to the token list. It might be able to work by taking what's inside the brackets and...

bug

When using argparse or ltreesitter, you can generally do things like: ```teal child:child_by_field_name("base"):source() ``` but the language server will not show any completions when typing `source`. It should be able...

bug

I was trying to add all the examples from the Teal Tutorial to the examples folder (#32) and came across a couple parsing issues. ## Generics The `S is` has...

Was going to PR it into my own repo to see how the CI behaves. Will un-draft when it is ready to pull in here.

Having a subset of enums that are part of a larger set of enums. I wrote some code that where users could register custom handling around _some_ of the types...

feature request

as of now, `string.find` has the type: ```teal find: function(string, string, ? integer, ? boolean): integer, integer, string... ``` Where `string...` takes care of all the potential captures in the...

feature request