-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solc 0.6.0 #316
Solc 0.6.0 #316
Conversation
The main hurdle to allowing for solc-0.6 has been the breaking change in the srcmap format, which this PR supports. Together with dapphub/ds-test#14, the basic I suggest we don't let updating the rest of ds-* block this though |
done (xs, s, p) = let (xs', _, _) = go ';' (xs, s, p) in xs' | ||
|
||
go ':' (xs, F1 [] _, p@(SM a _ _ _)) = (xs, F2 a [] 1, p) | ||
go ':' (xs, F1 ds k, p) = (xs, F2 (k * digits ds) [] 1, p) | ||
go :: Char -> (Seq SrcMap, SrcMapParseState, SrcMap) -> (Seq SrcMap, SrcMapParseState, SrcMap) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good luck reviewing this!
I'm fine with merging this if you've tested it. |
draft pr for visibility,
Non-exhaustive list of things that need fixing in order to support
0.6.0
are:Solidity.hs
to accomodate the new srcmap format