Created
June 24, 2014 09:58
-
-
Save pchw/bb9177f8561e6c724811 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Base | |
class LibraryName.Klass extends Base | |
constructor: -> | |
@name = @constructor.name | |
@namespace = "?" | |
Parent = exports? and exports or @Parent = {} | |
class Parent.Child extends LibraryName.Klass | |
fn: -> | |
# -> Child って出したい | |
console.log @name | |
# -> Parent って出したい | |
console.log @namespace |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment