gavr123456789 / Niva

Smalltalk like programming language
https://gavr123456789.github.io/niva-site
41 stars 2 forks source link

clash of pkg names and local variables #274

Open gavr123456789 opened 3 months ago

gavr123456789 commented 3 months ago

file reader.niva defines type Reader

in main.niva u creating reader = Reader new

code for its constructor generated:

val reader = Reader()
reader.FileFromDialog.fromWindowDoWithContent(window, {x-> 
        //@ main.niva:::39
        x.echo()})