Ömer Sinan Ağacan
Ömer Sinan Ağacan
> > but I'm not aware of any functions that would be "idempotent" but not "pure". > > @osa1 one example might be static initialization (assuming Dart needs something like...
> I think the reason it is needed in match stems from the ability for match patterns to include guards. Right, I think with guards there needs to be some...
This seems like a bug in tracking or handling or transitive dependencies. If I add the imports: ``` import std/num/ddouble import std/time/timestamp ``` it works.
@grantwwu do I have to re-install anything after adding this line to nixpkgs config? I'm still getting same errors after `nixops deploy`.
It looks like `(await packageConfigUri).path` somehow returning an illegal path for Windows. Repro: ```dart void main() { Uri.file('/C:/_Projects/github/squadron/.dart_tool/package_config.json', windows: true); } ``` Crashes with: ``` Invalid argument(s): Illegal character in...
I think we are converting a valid Windows file path to URI and then back. Example: ```dart void main() { final windowsPath = 'C:\\Documents\\Foo'; final uri = Uri.file(windowsPath, windows: true);...
In #2265 we start running the dart2wasm integration test on Windows, which catches this bug.
@tlively I think this is ready, but it changes ids of some existing instructions (see CI failure). Is this a problem? I can't find where/how the ids are defined. Could...
Thanks for the ping. I'll have a look tomorrow. (Sorry I forgot to add this to the unfuzzable tests as @tlively suggested, but I'll see if it's easy to implement....
> However, I'm not sure to understand how the proposed feature could do anything about it - I feel like what you'd need is a guard on rules when matching...