Radosław Waśko

Results 87 issues of Radosław Waśko

As [shortly discussed](https://discord.com/channels/@me/1070031629038399609/1201920620460245084) a relative path will return `Nothing` if we cannot go 'up' anymore: ``` > File.new '.' . parent >>> Nothing > File.new 'foo.txt' . parent >>> Nothing...

p-medium
-libs

As described in a [comment](https://github.com/enso-org/enso/pull/8921#discussion_r1476048152), currently a temporary file is written to disk when writing to `S3_File` using `Vector.write_bytes` and `Text.write` when writing from memory. However, that is unnecessary -...

p-low
x-chore
-libs

As described in the PR #8921 introducing it: > I realized that this actually causes 2 temporary files to be created. > > 1. First, the `temp_file` is created. >...

p-low
x-chore
-libs

The #9001 removes the `Meta_Test_Suite_Tests` project as it was not really working and it was actually testing only a very limited part of the functionality. One of the problems with...

p-low
x-chore
-libs

`File.delete` should allow to set if removing directories should be recursive or should it only work if a directory is empty. Currently, `File.delete` always removes a directory with all the...

p-medium
-libs

As shown in the repro: ``` $ enso repl > "foo".write (File.new "radeks_file.txt") >>> (File C:\Users\DELL\AppData\Local\Temp\radeks_file_ensodryrun3483346897526735121.txt) ``` We can see that the `write` operation returns a _dry-run_ file, meaning that...

--bug
-compiler

Repro: ``` from Standard.Base import all foo : Standard.Base.Data.Numbers.Integer foo = 1 bar (x : Standard.Base.Data.Numbers.Integer) = 10+x main = bar foo ``` This seems like a completely valid program,...

-type-system
--bug
-compiler

Repro: ``` from Standard.Base import all from Standard.Test import all add_specs suite_builder = suite_builder.group "ok group" group_builder-> group_builder.teardown

--bug
-libs

When using GitMachete with a deeper branch structure tree, I relatively often find myself wanting to create a PR from the current branch to its parent. When launching GitHub after...

feature
externally requested

### Pull Request Description - Closes #8590 - It **cannot** be merged before #9361 is implemented, as it changes the IR structure in such a way that currently it cannot...