Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Every global variable in javascript is a property of 'window'

Apparently all local variable (aswell as arguments) are stored as properties of the 'Call object' (See chapter 4.6.2 of each function. Persumably only existing for the lifetime of said function.

Basically I want to be able to do

for (var obj in CallObject ) { // }

Can I access said object containing local variables and if so how? Alternatively is there any other way of accessing all local variables of a function.

[Edit]

It turns out that arguments is a property of the Activation Object of a function. This has to be stored somewhere.

"The activation object is purely a specification mechanism. It is impossible for an ECMAScript program to access the activation object."

Turns out ECMAScript states I am not allowed to access it.

What about accessing arguments properties and somehow chaining up to local variables?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
122 views
Welcome To Ask or Share your Answers For Others

1 Answer

No. There is no way of doing this in any browser implementation of JavaScript.

It's theoretically possible that an implementation could provide an extension to allow code to inspect the current Variable object (aka the Activation object within a function; "Call object" is a term made up by Flanagan that is not mentioned anywhere within the ECMAScript spec) but no implementation I know of does this.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...