I've created a simple 'require' mechanism (https://gist.github.com/1031869), in which the included script is compiled and run in a new context. However, when I call a function in the included script and pass it this, the included script doesn't see any properties in it.

//required.js - compiled and run in new context
exports.logThis = function(what){
    for (key in what) log(key + ' : ' + what[key]);
}

//main.js
logger = require('required');
this.someProp = {some: 'prop'}
logger.logThis({one: 'two'});   //works, prints 'one : two'
logger.logThis(this); //doesn't work, prints nothing. expected 'some : prop'
logger.logThis(this.someProp); //works, prints 'some : prop'
link|improve this question

80% accept rate
What displays the logger.logThis(this); statement if you call it inside the main.js file? – levu Jun 17 '11 at 22:24
logger.logThis(this) called from main.js displays nothing. If I do for (key in this) log(key) in main.js then it displays the properties of this (like the log function and someProp). But if I run the same code in required.js, then nothing is printed. – Florin Jun 18 '11 at 8:18
That's strange, maybe file a bug? – levu Jun 18 '11 at 12:51
feedback

1 Answer

up vote 0 down vote accepted

The problem was that V8 doesn't allow a Context to access the global variables of another Context. Hence, logger.logThis(this) wasn't printing anything.

This was solved, by setting the security token on the new context:

moduleContext->SetSecurityToken(context->GetSecurityToken());

where context is the 'main' context and moduleContext is the new context in which the included script runs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.