Vihan

Results 45 issues of Vihan

This is more of a feature-request but my idea is: characters that would throw a syntax error, should be converted to strings: ``` *+UqR "*"+UqR ``` Like in this example,...

feature request
interpreter
strings

Right now the code is kinda a browser/node.js polyglot. I could perhaps add webpack so we can write pure-node and convert it to browser JS if you like, to make...

I have this line which causes an error: ```lex "/*" this.begin("MUTLILINE_COMMMENT"); ``` where `MULTILINE_COMMENT` is successfully defined with `%x MULTILINE_COMMENT` ``` /usr/local/lib/node_modules/jison/node_modules/jison-lex/regexp-lexer.js:42 startConditions[conditions[k]].rules.push(i); ^ TypeError: Cannot read property 'rules' of...

This has me stumped for a couple of days, I'm trying to convert a LL grammar to LALR for Jison, but it throws this error: ``` Conflict in grammar: multiple...

JavaScript ES6 classes have `constructor` which seems to get a `@return` this tag isn't needed on the constructor(): ```js class Foo { constructor() {} } ```

This was using an older version of KaTeX so this just updates to latest 0.8.x katex

Currently this should properly detect and allow override: ```swift class A { func f(a: T) {} } class B: A { func f(a: U) {} } ``` along with fields....

bug
needs: transformer

Certain classes are 'static' for design purposes. This means that with this class: ```swift @dynamic(false) public class Animal { // ... func makeSound() { ... } } ``` The following...

validation
feature: planned
needs: transformer

Initializers should not be able to call methods on self until after the fields have been initialized: ```swift class A { let a: Int let b: Int init() { f();...

bug
validation
needs: transformer