|
@ -25,6 +25,8 @@ |
|
|
#include <list> |
|
|
#include <list> |
|
|
#include <map> |
|
|
#include <map> |
|
|
|
|
|
|
|
|
|
|
|
#include <v8-debug.h> |
|
|
|
|
|
|
|
|
using namespace v8; |
|
|
using namespace v8; |
|
|
using namespace node; |
|
|
using namespace node; |
|
|
|
|
|
|
|
@ -382,10 +384,14 @@ main(int argc, char *argv[]) |
|
|
// to it's namespace node.EventEmitter in Load() bellow.
|
|
|
// to it's namespace node.EventEmitter in Load() bellow.
|
|
|
EventEmitter::Initialize(process_template); |
|
|
EventEmitter::Initialize(process_template); |
|
|
|
|
|
|
|
|
|
|
|
Debug::EnableAgent("node", 2222); |
|
|
|
|
|
|
|
|
Persistent<Context> context = Context::New(NULL, |
|
|
Persistent<Context> context = Context::New(NULL, |
|
|
process_template->InstanceTemplate()); |
|
|
process_template->InstanceTemplate()); |
|
|
Context::Scope context_scope(context); |
|
|
Context::Scope context_scope(context); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context->Global()->Set(String::NewSymbol("process"), context->Global()); |
|
|
context->Global()->Set(String::NewSymbol("process"), context->Global()); |
|
|
|
|
|
|
|
|
Local<Object> node_obj = Load(argc, argv); |
|
|
Local<Object> node_obj = Load(argc, argv); |
|
|