Results 17 comments of Zach Carter

For the syntax, I'd prefer something that resembles what the lexical grammar already uses, e.g. `%options myopt1 myopt2`. We could expand that to allow assignment of a value, e.g. `%options...

Apparently it's hardcoded to cycle through 3 colors max for bar charts: https://github.com/rsamec/react-pathjs-chart/blob/95b56505e43c92eca1e7750b4070fac96358d7f0/src/charts/Bar.js#L83 Ideally that would be configurable.

Any workarounds for achieving this today?

@ozten Comments are now supported as of 0.1.1 :) The ast will have a comments array with the character position of the comment (as per [this example](https://github.com/zaach/reflect.js/blob/master/test/test.js#L2863)).

Could you provide a link to the bison docs and jison samples you're referring to? I may have totally missed this.

This is tricky because the lexer uses JavaScript regular expressions, which don't allow you to start from an arbitrary position in a string. This means a new string is created...

@aaditmshah A more JavaScript friendly lexer is definitely a nice thing to have, but one of the qualifications for the default lexer is that it can be expressed in a...

What version of node are you running? I don't see an error on 0.10.x.

Hi folks– I'm back from the abyss. I see y'all have been busy! I've merged some things and have some more to look over before I push a new version....

@zxqfox That's currently how it works :) The prolific @GerHobbelt made a fork of my lex-parser. I should check out what he has in there.