enso/distribution/lib/Standard/Base/0.0.0-dev
Hubert Plociniczak 0e5df935d3
Don't rename imported Main module that only imports names (#3710)
Turns that if you import a two-part import we had special code that would a) add Main submodule b) add an explicit rename.

b) is problematic because sometimes we only want to import specific names.
E.g.,
```
from Bar.Foo import Bar, Baz
```
would be translated to
```
from Bar.Foo.Main as Foo import Bar, Baz
```
and it should only be translated to
```
from Bar.Foo.Main import Bar, Baz
```

This change detects this scenario and does not add renames in that case.

Fixes [183276486](https://www.pivotaltracker.com/story/show/183276486).
2022-09-16 13:01:06 +00:00
..
src Don't rename imported Main module that only imports names (#3710) 2022-09-16 13:01:06 +00:00
THIRD-PARTY Update Scala to 2.13.8 (#3631) 2022-08-08 19:32:55 +00:00
package.yaml Add Text.write Function (#3518) 2022-06-13 09:11:46 +00:00