Joshua Batty
Joshua Batty
Would be great to have multiple buffer support. I know ofxFx supports things like this but its not openGL 3.2 compatible.
Show the type info for variables if no type ascription is present.
For example,
@Braqzen noticed some strange syntax highlighting behavior which was noted in https://github.com/FuelLabs/sway-vscode-plugin/issues/92 I was able to replicate this locally and have tracked down the cause of the problem. In the...
Consider the following example that *rightfully* fails type checking. ``` script; fn main() { let y: u64 = 0; let x: str[3] = y; } ``` Currently, the compiler is...
Hovering over a token should look up the definition and show `type` information, and it's visibility i.e `pub` or not. For functions then the function signature should be also shown....