enso/test/Examples_Tests/src
Hubert Plociniczak 06bd69436b
Import modules' extension methods only with unqualified import statements (#3906)
# Important Notes
Note that one cannot
```
import Standard.Table as Table_Module
```
because of the 2-component name restriction that gets desugared to `Standard.Table.Main` and we have to write
```
import Standard.Table.Main as Table_Module
```
in a few places. Once we move `Json.to_table` extension this can be improved.
2022-12-01 10:13:34 +00:00
..
Examples_Spec.enso Import modules' extension methods only with unqualified import statements (#3906) 2022-12-01 10:13:34 +00:00
Main.enso Tidy up the remaining ones except Base... (#3797) 2022-10-17 11:27:27 +00:00