Namespace-in-CoffeeScript
Namespace-in-CoffeeScript copied to clipboard
Namespace rewrite
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 =)