Vivek Ghaisas
Vivek Ghaisas
(Background: I installed RLS through VSCode and I'm using the nightly channel which I installed using rustup and then selected by putting "nightly" in a `rust-toolchain` file.) ``` #![feature(panic_implementation)] #![no_std]...
Currently, `Squiz.WhiteSpace.SuperfluousWhitespace` only looks inside functions for `EmptyLines`, but aren't multiple empty lines a concern even outside of functions? The MediaWiki codesniffer standard recently had this implemented as a custom...
- **Version**: v.6.3.1 - **Platform**: Linux (Ubuntu 14.04) - **Subsystem**: `repl` (I think) ``` let s = Set(); ``` gives `TypeError: Constructor Set requires 'new'`. However, after this: ``` s...
I'd prefer to use the double braces format for my variables, however, I'd like pystache to ignore certain cases, such as in this legitimate javscript snippet: ``` html !function(d,s,id){{var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){{js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}}}(document,...
The current handling of command line arguments (refer to `fn main` in [main.rs](src/main.rs)) is rather crude. Using a command line library crate would definitely make things simpler.
Currently, balloon naively treats all functions' types as equal. However, when checking function calls, since it traces the actual call, it points out incorrect number of arguments (which must match...
# Working draft of the roadmap after 0.1.0 ## 0.2.0 This release is meant to focus on the language features. Thus, new language constructs that are dissimilar to existing ones...
Instead of falling back to plain old `Any`, the typechecker should support union types in cases where inference cannot settle on just one type (and in the future when explicit...