Hi all,
I am developing a wrapper API on top of JavaScriptCore for integration with
my application.
Here is an overview of my API.
In my application scripts are executed and variables are defined in
different scopes. This example shows the functionality needed.
js_init(); - initialize
js_set_var("abc","2"); - set abc=2 in global scope
js_push_scope(); - create a new scope
js_set_var("abc","4"); - set abc=4 in new scope
js_print_var("abc"); - should print 4 as we are in new scope
js_pop_scope(); - pop most recent scope. i,e. the new scope
js_print_var("abc"); - Now it should print 2 because we are back to global
scope.
My question is what should i be doing in js_push_scope and js_pop_scope so
that a new JavaScript scope is created and destroyed.
I have seen that there is a ScopeChain.cpp/h .. but its not very clear as to
how to use them.
Raj
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---