Javascript Reflection - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T00:30:29Zhttp://stackoverflow.com/feeds/question/275351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/275351/javascript-reflection2Javascript ReflectionOwen2008-11-08T23:05:17Z2008-11-24T21:54:06Z
<p>Is there a way to get all methods (private, privileged, or public) of a javascript object from within? Here's the sample object:</p>
<pre><code>var Test = function() {
// private methods
function testOne() {}
function testTwo() {}
function testThree() {}
// public methods
function getMethods() {
for (i in this) {
alert(i); // shows getMethods, but not private methods
}
}
return { getMethods : getMethods }
}();
// should return ['testOne', 'testTwo', 'testThree', 'getMethods']
Test.getMethods();
</code></pre>
<p>The current issue is the code in <code>getMethods()</code>, the simplified example will return just the public methods, but not to private ones.</p>
<p><strong>edit</strong>: my test code may (or may not) be overcomplicating what i'm hoping to get at. given the following:</p>
<pre><code>function myFunction() {
var test1 = 1;
var test2 = 2;
var test3 = 3;
}
</code></pre>
<p>is there a way to find out what variables exist in <code>myFunction()</code> from within <code>myFunction()</code>. the pseudo-code would look like this:</p>
<pre><code>function myFunction() {
var test1 = 1;
var test2 = 2;
var test3 = 3;
alert(current.properties); // would be nice to get ['test1', 'test2', 'test3']
}
</code></pre>
http://stackoverflow.com/questions/275351/javascript-reflection/275362#275362-1Answer by Oli for Javascript ReflectionOli2008-11-08T23:21:57Z2008-11-08T23:21:57Z<p>If you call getMethods() like that, isn't it static? Surely you'd need to properly init the class for <code>this</code> to work as expected?</p>
<pre><code>var t = new Test();
t.getMethods();
</code></pre>
<p>If that doesn't work, please take a look at the <a href="http://www.iconico.com/workshop/jsSerializer/" rel="nofollow">JS Serializer</a>. I used it a while back for some debug and I think it worked for private vars.</p>
http://stackoverflow.com/questions/275351/javascript-reflection/275380#2753804Answer by sblundy for Javascript Reflectionsblundy2008-11-08T23:35:54Z2008-11-08T23:35:54Z<p>Javascript doesn't really have the notion of private anything. Because of that, javascript doesn't have a reflection API as such. The technique you're using doesn't so much make them private as render them inaccessible; they're hidden, not private. I think you could manage something by putting those methods somewhere manually.</p>
http://stackoverflow.com/questions/275351/javascript-reflection/275390#2753901Answer by eswald for Javascript Reflectioneswald2008-11-08T23:58:06Z2008-11-08T23:58:06Z<p>Part of the issue with your test code is that Test is the object created by your return statement: "<code>{ getMethods : getMethods }</code>" It has no testOne, testTwo, or testThree methods; instead, those are only available within the same namespace as the original getMethods function.</p>
http://stackoverflow.com/questions/275351/javascript-reflection/275457#2754577Answer by Kevin Gorski for Javascript ReflectionKevin Gorski2008-11-09T00:59:51Z2008-11-09T01:39:49Z<p>The technical reason why those methods are hidden is twofold. </p>
<p>First, when you execute a method on the Test object, "this" will be the untyped object returned at the end of the anonymous function that contains the public methods per the <a href="http://yuiblog.com/blog/2007/06/12/module-pattern/" rel="nofollow">Module Pattern</a>. </p>
<p>Second, the methods testOne, testTwo, and testThree aren't attached to a specific object, and exist only in the context of the anonymous function. You could attach the methods to an internal object and then expose them through a public method, but it wouldn't be quite as clean as the original pattern and it won't help if you're getting this code from a third party.</p>
<p>The result would look something like this:</p>
<pre><code>var Test = function() {
var private = {
testOne : function () {},
testTwo : function () {},
testThree : function () {}
};
function getMethods() {
for (i in this) {
alert(i); // shows getMethods, but not private methods
}
for (i in private) {
alert(i); // private methods
}
}
return { getMethods : getMethods }
}();
// will return ['testOne', 'testTwo', 'testThree', 'getMethods']
Test.getMethods();
</code></pre>
<p><strong>edit:</strong></p>
<p>Unfortunately, no. The set of local variables aren't accessible via a single, automatic keyword. </p>
<p>If you remove the "var" keyword they would be attached to the global context (usually the window object), but that's the only behavior that I know of that is similar to what you're describing. There would be a lot of other properties and methods on that object if you did that, though.</p>
http://stackoverflow.com/questions/275351/javascript-reflection/315635#3156350Answer by small_jam for Javascript Reflectionsmall_jam2008-11-24T21:54:06Z2008-11-24T21:54:06Z<p>you can use var that = this; trick</p>
<pre>
var Test = function() {
var that = this;
function testOne() {}
function testTwo() {}
function testThree() {}
function getMethods() {
for (i in that) {
alert(i);
}
}
return { getMethods : getMethods }
}();
</pre>