fkling / astexplorer

A web tool to explore the ASTs generated by various parsers.
https://astexplorer.net/
MIT License
6.04k stars 711 forks source link

The Solidity parsers are outdated. There's a maintained alternative that should be used #690

Open Mouradif opened 1 year ago

Mouradif commented 1 year ago

Describe the bug Not a bug but the 2 available Solidity parsers are very outdated. They don't support custom error declarations like so

error MyCustomError(uint someArg);

Additional context By looking at ConsenSys's parser's network searching for forks with more activity, I found this repository:

https://github.com/solidity-parser/parser

and it supports CustomErrorDefinition