Kamil Śliwak
Kamil Śliwak
@axic There are some more steps that need to be added to the list. Standard JSON has no equivalent for: - `--import-ast` mode - `--import-asm-json` mode (soon to be added...
Another thing that's not available in Standard JSON is the Yul->Ewasm translation (i.e. `solc input.yul --strict-assembly --yul-dialect evm --machine ewasm`).
Added to the description. Note that #10278 was already there. I also removed `Support parser error recovery setting in standard json`, which was obsoleted by #14395.
Probably not 0.8.19 because we want to release that pretty soon (our initial plan was to aim for 2 weeks after 0.8.18 and that may still be possible). But as...
I'm fine with increasing the impact - this is only an estimate and the fact that it's of that much interest to libraries shows that it perhaps should be higher....
Continuing discussion from #16318: @mudgen > 3. Improved NatSpec documentation for modules. I currently cannot write a NatSpec comment for a constant defined in a module. I can't write a...
I think that in addition to positive tests we should also have some negative ones, showing what **cannot** be used as a constant. I'd basically create a test covering all...
3 typos in file names from #15873 that ended up closed without being merged: - `modifer_recursive.sol` -> `modifier_recursive.sol` - `no_target_for_abstract_constract.sol` -> `no_target_for_abstract_contract.sol` - `142_inheritence_suggestions.sol` -> `142_inheritance_suggestions.sol`
And a botched search&replace in `LanguageServer.cpp` (#15758): - `tokenTypes.emplace_back("std::string");` -> `tokenTypes.emplace_back("string");`
@baiwfg2 Thanks, it indeed needs a correction. > The function `f` in contract `C` cannot run, since array `s` isn't allocated. I think we should add something like `s =...