muspellsson / hiccup

Automatically exported from code.google.com/p/hiccup
GNU Lesser General Public License v2.1
2 stars 0 forks source link

namespace path #101

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Some 8.5-compliant goodness.

Example:

The following script returns "::foo":

namespace eval ::foo {
   proc boo {} {namespace current}
   namespace eval bar {
      namespace path ::foo
      boo
   }
}

The following script return "::foo::bar":

namespace eval ::foo {
   proc boo {} {namespace current}
   namespace eval bar {
      proc boo {} {namespace current}
   }
   namesspace eval spong {
      namespace path ::foo
      bar::boo
   }
}

Original issue reported on code.google.com by consa...@gmail.com on 28 Jul 2008 at 4:31

GoogleCodeExporter commented 9 years ago
Mostly fixed except for deleted path namespaces

Original comment by consa...@gmail.com on 28 Jul 2008 at 11:05