Radosław Waśko

Results 68 comments of Radosław Waśko

The Truffle `readArrayElement` only accepts a `long index`. So the Pandas DataFrame reports that it `hasArrayElements` but there is no way to access _any_ of its contents through the `InteropLibrary.readArrayElement`...

I will very much appreciate reviews on this PR. Due to introducing a cyclic reference to the IR (by adding `Expression` inside of `BindingsMap.Type` (indirectly through `Const -> Argument`)), it...

In 4130187d28749eb29a05b0adecc185852ad32d2f I added persistance for TypeInference pass and its related components. By default these are not included in the cache generation because the pass is disabled. Just to test...

Even though this first iteration is extremely simple, it is already giving some fruit. It allowed me to statically detect the following problem within the `Image` library, that was not...

Split off persistance changes to #10101 , will rebase once that is merged.

> > would we perhaps want a `input.replace "\d" " "` cleanse too? (like Duplicate_Whitespace, except always replacing with spaces - for example, `'foo bar\t\t baz'`) > > although it...

Indeed, on Linux it seems that such weird paths are accepted: ``` > File.new "C:/a" >>> (File C:/a) > File.new "a:b:c" >>> (File a:b:c) > File.new "C:\dev:a" >>> (File C:\dev:a)...

> I don't think you can integrate commit by [0540d6b](https://github.com/enso-org/enso/commit/0540d6bfe113cf3da3967a52129a5edbee6eb89a) - it is not going to sign the CLA... I think we need to ask some repo admins to whitelist...

This is related to #8858 - if that was implemented we would at least see that there is a problem (the indentation there is not a multiple of 4), so...

Curiously ``` from Standard.Base import all main = IO.println "A" IO.println "B" IO.println "C" IO.println "D" ``` fails with ``` A Execution finished with an error: Type error: expected a...