[v8-users] TerminateExecution while debugging

2016-07-16 Thread treck
I have question about v8::V8::TerminateExecution function. I set up debugger by using v8::Debug::SetMessageHandler. While javascript code is running, I need possibility to stop execution. I have two cases: 1. javascript is executing `while(1);` -> stopping works and Local

Re: [v8-users] TerminateExecution while debugging

2016-07-17 Thread treck
Thank you for information. W dniu niedziela, 17 lipca 2016 09:28:16 UTC+2 użytkownik Ben Noordhuis napisał: > > On Sat, Jul 16, 2016 at 11:52 PM, treck > > wrote: > > I have question about v8::V8::TerminateExecution function. > > > > I set up debugger by usin

[v8-users] Lack of request_seq property in response messages from debugger

2016-07-19 Thread treck
I'm using V8 debugger and sometimes I don't get "request_seq" property in response messages returned by V8. My tests implies that this situation happens on first response message. Can i assume that if there is no request_seq property, response message matches to first request message? -- -- v

[v8-users] Ready for use V8 binaries (Win 32-bit)

2015-06-14 Thread treck
I need to use v8 engine for my C++ project. Could someone share here ready for use binaries for platform Windows 32-bit? I tried compile it myself but i get error. If someone is concern this error it's here (my platform Windows 7 64-bit) : python.exe build\gyp_v8 -Dtarget=ia32 -Dcomponent=share

[v8-users] Ready for use V8 build for Win 32-bit

2015-06-14 Thread treck
I need to use v8 engine for my C++ project. Could someone share here ready for use binaries for platform Windows 32-bit? I tried compile it myself but i get error. If someone is cuirious this error it's here (my platform Windows 7 64-bit) : python.exe build\gyp_v8 -Dtarget=ia32 -Dcomponent=shar

[v8-users] Re: Ready for use V8 build for Win 32-bit

2015-06-14 Thread treck
, which changed various things. The V8 > scripts work with Python 2.x, so I suggest installing > https://www.python.org/download/releases/2.7.6/ and trying again. > > On Sunday, 14 June 2015 09:04:28 UTC-4, treck wrote: >> >> I need to use v8 engine for my C++ project. Cou

Re: [v8-users] Re: Ready for use V8 build for Win 32-bit

2015-06-16 Thread treck
'initializing' : conver sion from 'int64_t' to 'int32_t', possible loss of data [E:\STUDIA\ Praca_dyplom owa\v8-new\v8\third_party\icu\icuuc.vcxproj] source\common\dictionarydata.cpp(121): warning C4244: 'initializing' : conver sion from 'int64_t'

Re: [v8-users] Re: Ready for use V8 build for Win 32-bit

2015-06-16 Thread treck
Ok, Now I've used code from https://github.com/v8/v8-git-mirror/blob/master/samples/hello-world.cc and it worked. W dniu wtorek, 16 czerwca 2015 13:01:42 UTC+2 użytkownik treck napisał: > > I compiled it in VS 2013 and I got a lot of warnings. I tried build hello > world prog

[v8-users] Read access violation while using v8::Debug::SetMessageHandler

2016-01-14 Thread treck
I'm trying implement V8 debugger in my Qt application but I get exception. I have 2 threads: main (that handle GUI and debugger commands) and engine thread (that run javascript code). 1. In main thread i'm initializing V8 by calling V8::InitializeICU(); mPlatform = platform::Create

Re: [v8-users] Read access violation while using v8::Debug::SetMessageHandler

2016-01-18 Thread treck
W dniu poniedziałek, 18 stycznia 2016 09:41:18 UTC+1 użytkownik Ben Noordhuis napisał: > > On Thu, Jan 14, 2016 at 11:35 PM, treck > > wrote: > > I'm trying implement V8 debugger in my Qt application but I get > exception. > > > > I have 2 threads: main

[v8-users] Problems with setbreakpoint command

2016-01-24 Thread treck
My program need set breakpoints feature on specified line of code. I'm trying use setbreakpoint command but it doesn't work for me. It requires something special to do? I tried set breakpoint type to "scriptId' and "func