<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/test/message/throw_non_error.out, branch node-review</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>node: do not print SyntaxError hints to stderr</title>
<updated>2014-02-06T09:26:57+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor.indutny@gmail.com</email>
</author>
<published>2014-02-05T16:38:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=f1de13b8ab77f1bcab0d7cffee140a264cae4cce'/>
<id>f1de13b8ab77f1bcab0d7cffee140a264cae4cce</id>
<content type='text'>
Try embedding the ` ... ^` lines inside the `SyntaxError` (or any other
native error) object before giving up and printing them to the stderr.

fix #6920
fix #1310
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Try embedding the ` ... ^` lines inside the `SyntaxError` (or any other
native error) object before giving up and printing them to the stderr.

fix #6920
fix #1310
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: make all message tests pass on Windows</title>
<updated>2012-06-13T01:02:53+00:00</updated>
<author>
<name>Bert Belder</name>
<email>bertbelder@gmail.com</email>
</author>
<published>2012-06-13T01:02:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=0dba4ad0f91ca926055c4df1d6a1699df17cb0a5'/>
<id>0dba4ad0f91ca926055c4df1d6a1699df17cb0a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'ry/v0.6' into v0.6-merge</title>
<updated>2012-05-09T22:12:13+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2012-05-09T22:12:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=07be9fc3a674d8a2e148041f3674c1abaee0907f'/>
<id>07be9fc3a674d8a2e148041f3674c1abaee0907f</id>
<content type='text'>
Conflicts:
	Makefile
	lib/zlib.js
	src/node.cc
	src/node.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	Makefile
	lib/zlib.js
	src/node.cc
	src/node.js
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix exception output for module load exceptions</title>
<updated>2012-05-09T18:54:43+00:00</updated>
<author>
<name>Felix Geisendörfer</name>
<email>felix@debuggable.com</email>
</author>
<published>2012-05-08T20:02:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=bf9d8e9214e2098bacf18416564dc3a91bcdf5d6'/>
<id>bf9d8e9214e2098bacf18416564dc3a91bcdf5d6</id>
<content type='text'>
So instead of:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

You will now see:

path/to/foo.js:1
throw new Error('bar');
      ^

This is a sub-set of isaacs patch here:

https://github.com/joyent/node/issues/3235

The difference is that this patch purely adresses the exception output,
but does not try to make any behavior changes / improvements.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So instead of:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

You will now see:

path/to/foo.js:1
throw new Error('bar');
      ^

This is a sub-set of isaacs patch here:

https://github.com/joyent/node/issues/3235

The difference is that this patch purely adresses the exception output,
but does not try to make any behavior changes / improvements.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix process.nextTick throw call sites</title>
<updated>2012-05-09T18:54:43+00:00</updated>
<author>
<name>Felix Geisendörfer</name>
<email>felix@debuggable.com</email>
</author>
<published>2012-05-08T14:07:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=814033365b146afb095fad6c2c05d0da0237615f'/>
<id>814033365b146afb095fad6c2c05d0da0237615f</id>
<content type='text'>
This patch now reports the proper throw call site for exceptions
triggered within process.nextTick. So instead of this:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

You will now see:

mydir/myscript.js:15
  throw new Error('My Error');
          ^

From my testing this patch causes no performance regressions, but does
greatly simplify processing the nextTickQueue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch now reports the proper throw call site for exceptions
triggered within process.nextTick. So instead of this:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

You will now see:

mydir/myscript.js:15
  throw new Error('My Error');
          ^

From my testing this patch causes no performance regressions, but does
greatly simplify processing the nextTickQueue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix message tests</title>
<updated>2011-07-16T05:12:00+00:00</updated>
<author>
<name>koichik</name>
<email>koichik@improvement.jp</email>
</author>
<published>2011-07-16T05:12:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=4662ace9165ae6d8aab06ba7ef3ffff4c971c859'/>
<id>4662ace9165ae6d8aab06ba7ef3ffff4c971c859</id>
<content type='text'>
V8 3.4.12.1 changed exception log format.

3.14.10:
node.js:189
        throw e; // process.nextTick error, or 'error' event on first tick
        ^

3.4.12.1:
node.js:189
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

The caret was moved.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
V8 3.4.12.1 changed exception log format.

3.14.10:
node.js:189
        throw e; // process.nextTick error, or 'error' event on first tick
        ^

3.4.12.1:
node.js:189
        throw e; // process.nextTick error, or 'error' event on first tick
              ^

The caret was moved.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'v0.4'</title>
<updated>2011-05-08T03:38:32+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2011-05-08T03:38:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=205b9beb6be0d563a85027158e8af3bee8472b9e'/>
<id>205b9beb6be0d563a85027158e8af3bee8472b9e</id>
<content type='text'>
Conflicts:
	lib/tls.js
	lib/url.js
	src/node_version.h
	test/simple/test-buffer.js
	test/simple/test-url.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	lib/tls.js
	lib/url.js
	src/node_version.h
	test/simple/test-buffer.js
	test/simple/test-url.js
</pre>
</div>
</content>
</entry>
<entry>
<title>Close #974 Properly report traceless errors.</title>
<updated>2011-04-25T19:22:18+00:00</updated>
<author>
<name>isaacs</name>
<email>i@izs.me</email>
</author>
<published>2011-04-25T19:22:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=8df6f9e54469902a3d1da30a57cbfbe6900f977d'/>
<id>8df6f9e54469902a3d1da30a57cbfbe6900f977d</id>
<content type='text'>
Also, tests for the same.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, tests for the same.
</pre>
</div>
</content>
</entry>
</feed>
