On Sat, Feb 2, 2013 at 7:26 AM, Jack Waugh <[email protected]> wrote:
> It would be wonderful if the VM module (virtual machine) would let one catch
> the errors from trying to compile a Javascript source string, instead of
> having them go to stdout.

Maybe I'm misunderstanding you but it already works like that:

  $ node -e 'try { require("vm").runInThisContext("{", "", true) }
catch (e) { }'

  :1
  {

  $ node -e 'try { require("vm").runInThisContext("{", "", false) }
catch (e) { }'
  <no output>

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to