Brendan Eich wrote: > And _the_real_foo should be expanded: > > { > private foo; > ... > } > > desugars to > > { > const foo = Name.create("foo"); BTW, would this not mean it is different in every run? > ... > } > > with Name.create imported appropriately. > > /be Herby