[v8-users] First-time committers using git-svn

2014-06-25 Thread Isiah Meadows
How would I get the bleeding_edge source code without a @chromium.org 
account? I have a potential patch for my first commit, small in scale, but 
I would have to first test it against that for speed.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
v8-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[v8-users] Throwable that can't be caught by JavaScript.

2014-06-25 Thread Jane Chen
I need a way to throw an exception from a function callback.  For this type 
of exception, I don't want the script to catch it, but instead, I'd like v8 
to throw it out to my system so that I can catch it and re-run the script.  
Does v8 provide such an API?  If not, is there some kind of work-around I 
could use?  

I'm on 3.24 but could upgrade to trunk if needed.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
v8-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [v8-users] Throwable that can't be caught by JavaScript.

2014-06-25 Thread Ingwie Phoenix
Exceptions are there to be caught O.o
If you want to catch a failure via your syste, consider terminating the 
actual process with a error message or error code, that oyur system understands.

Am 26.06.2014 um 06:53 schrieb Jane Chen jxche...@gmail.com:

 I need a way to throw an exception from a function callback.  For this type 
 of exception, I don't want the script to catch it, but instead, I'd like v8 
 to throw it out to my system so that I can catch it and re-run the script.  
 Does v8 provide such an API?  If not, is there some kind of work-around I 
 could use?  
 
 I'm on 3.24 but could upgrade to trunk if needed.
 
 -- 
 -- 
 v8-users mailing list
 v8-users@googlegroups.com
 http://groups.google.com/group/v8-users
 --- 
 You received this message because you are subscribed to the Google Groups 
 v8-users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to v8-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
v8-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[v8-users] Weak callback not called for an uncaught exception.

2014-06-25 Thread Jane Chen
I create an Error object registered with weak callback and throw it from my 
function callback.  If the script has try catch and catches the error, my 
weak callback is called during GC.  If the script does not catch it, but 
instead my TryCatch running the script  catches it, my weak callback does 
not seem to ever be called.  

Has anyone else seen this behavior?  Is this a bug?

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
v8-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.