Re: [v8-users] Isolate::GetCurrent() inside a FunctionCallback returns NULL

2016-06-22 Thread Jochen Eisinger
I'm not aware of a bug. If you could file one with repro steps, that'd be great! Neil Moore schrieb am Mi., 22. Juni 2016, 15:48: > Was any bug filed? This also describes what I'm seeing and I'd like to see > any follow up discussion. > > Thanks. > > > On Wednesday, 11 May 2016 06:05:14 UTC+1, J

Re: [v8-users] Isolate::GetCurrent() inside a FunctionCallback returns NULL

2016-06-22 Thread Neil Moore
Was any bug filed? This also describes what I'm seeing and I'd like to see any follow up discussion. Thanks. On Wednesday, 11 May 2016 06:05:14 UTC+1, Jochen Eisinger wrote: > > Could you file a bug please, if possible with a complete reproduction case? > > Thanks > Jochen > > Joris Wijnant > sc

Re: [v8-users] Isolate::GetCurrent() inside a FunctionCallback returns NULL

2016-05-10 Thread Jochen Eisinger
Could you file a bug please, if possible with a complete reproduction case? Thanks Jochen Joris Wijnant schrieb am Mo., 9. Mai 2016, 14:23: > Hi, > > I have the following callback definition. > > void Callback(const v8::FunctionCallbackInfo& info) > { > string strLogLine = ""; > v8::Isolate* pI

[v8-users] Isolate::GetCurrent() inside a FunctionCallback returns NULL

2016-05-09 Thread Joris Wijnant
Hi, I have the following callback definition. void Callback(const v8::FunctionCallbackInfo& info) { string strLogLine = ""; v8::Isolate* pIsolate = info.GetIsolate(); for (int i = 0; i < info.Length(); i++) { strLogLine += " " + string(*(v8::String::Utf8Value(info[i]->ToString(pIsolate; }