Felix Kling

Results 187 comments of Felix Kling

Sorry for the long radio silence. I was on vacation and I'm currently in process to move my family across continents. I knew about antlr, but I wasn't aware of...

I wanted to merge this, but when the parser is run on the default YAML code example, I'm getting the error > cstItem.valueRange is Null in `sequenceItems`. cc @ikatyang.

This was with version 1.0.0, but I will double check.

Thank you 😃 I'm glad tool maintainers are using it as well. Astexplorer allows parsers to define configuration options from which we generate a UI like ![screen shot 2019-01-27 at...

Last time I checked greenkeeper didn't support `package.json` files in sub-directories. However, I have been working on another solution for a while anyways: Packaging parsers individually and have a cronjob...

I actually want to move away from exposing different parser versions with different names. Instead I want there to be a single adapter for each parser (i.e. `babelyon`, `acorn`, ...)...

Current idea/plan: Create a script that can be loaded and which exposes an API that lets you render astexplorer into a given element. Something like: ``` astexplorer.render({ parser: 'acorn', parserSettings:...

This seems to be a problem with recast. Recast itself supports multiple parsers, however, it does not pass the `range` option to esprima: https://github.com/benjamn/recast/blob/56b676f179547c8c5634b93a134b7878fc861c47/parsers/esprima.js#L12-L21. I created a PR to fix...