Namespace-in-CoffeeScript icon indicating copy to clipboard operation
Namespace-in-CoffeeScript copied to clipboard

Namespace rewrite

Open SerafimArts opened this issue 12 years ago • 0 comments

   namespace Test:Any:
      class Some
        constructor: ->
          console.log 42

    namespace Test:
      class Any
        constructor: ->
          console.log 23
    new Test.Any; # 42
    new Test.Any.Some; # Error (undefined)

fail =)

SerafimArts avatar Oct 03 '13 18:10 SerafimArts