Kamil Śliwak

Results 471 comments of Kamil Śliwak

@chriseth Actually we need to talk about syntax again because there is a problem with `_`. We use it as a number separator and this makes `_` suffixes ambiguous with...

EDIT: I moved the TODO list to PR description.

Just for reference - issue about constants at file level: #9671.

There's an ongoing discussion related to default parameters on the forum: [Reducing Calldata Size with Optional/Default Function Parameters](https://forum.soliditylang.org/t/reducing-calldata-size-with-optional-default-function-parameters/638). Anyone wants to chime in?

One thing that might be useful in stdlib is the equivalent of `bytes.concat()` for strings (unless we want to add `string.concat()`). I've seen an OZ issue about string utils where...

Even weirder that this goes only one level deep. You can have a getter returning a struct if it's nested inside another struct. For example this compiles just fine and...

Since this is a bit stale anyway, maybe it would be a good idea to first submit some upstream PRs changing those comparisons? With a bit of luck, we'll be...

The main reason for having a dispatch function in Yul (rather than direct jumps like in the legacy codegen) is the expectation that the support for dynamic jumps in the...

> Remix requires version in URL params with commit id like `version=soljson-v0.8.7+commit.e28d00a7.js` . Currently from Solidity docs, version is sent as `version=0.8.15` which only set compiler to `latest local version`...

Some things that we might want to explicitly add to the list of stuff that should be evaluated a compilation time: - Constant expressions involving type conversions. - Ternary operator...