Created
January 16, 2010 03:15
-
-
Save seanmonstar/278624 to your computer and use it in GitHub Desktop.
This file contains 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
var A = new Class({ | |
initialize: $empty, | |
a: function() { | |
return arguments.callee.caller.caller.caller._name; | |
}, | |
b: function() { | |
console.log(this.a()); //knows 'b' called it | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment