<feed xmlns='http://www.w3.org/2005/Atom'>
<title>otp.git/lib/syntax_tools/src, branch master</title>
<subtitle>Mirror of Erlang/OTP repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/'/>
<entry>
<title>Merge branch 'maint'</title>
<updated>2019-08-26T06:38:55+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-08-26T06:38:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=db00e5033b964471b378f872e0f2f64e82da83be'/>
<id>db00e5033b964471b378f872e0f2f64e82da83be</id>
<content type='text'>
* maint:
  Update test suite
  Also unwrap map_type_* name and value
  Add unwrap calls to map_field_* in erl_syntax
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  Update test suite
  Also unwrap map_type_* name and value
  Add unwrap calls to map_field_* in erl_syntax
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'zadean/syntax_tools/add_missing_unwrap/OTP-16012/PR-2348' into maint</title>
<updated>2019-08-26T06:10:43+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-08-26T06:10:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=dcc3ff74d5932a1aadd39ddf91cb480ff122da7b'/>
<id>dcc3ff74d5932a1aadd39ddf91cb480ff122da7b</id>
<content type='text'>
* zadean/syntax_tools/add_missing_unwrap/OTP-16012/PR-2348:
  Update test suite
  Also unwrap map_type_* name and value
  Add unwrap calls to map_field_* in erl_syntax
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* zadean/syntax_tools/add_missing_unwrap/OTP-16012/PR-2348:
  Update test suite
  Also unwrap map_type_* name and value
  Add unwrap calls to map_field_* in erl_syntax
</pre>
</div>
</content>
</entry>
<entry>
<title>Also unwrap map_type_* name and value</title>
<updated>2019-08-22T11:59:28+00:00</updated>
<author>
<name>zadean</name>
<email>contact@zadean.com</email>
</author>
<published>2019-08-19T12:35:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=98462d8ec91dc34a06f5a2801c906ca1a0dd4ba1'/>
<id>98462d8ec91dc34a06f5a2801c906ca1a0dd4ba1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add unwrap calls to map_field_* in erl_syntax</title>
<updated>2019-08-22T11:59:18+00:00</updated>
<author>
<name>Zachary Dean</name>
<email>contact@zadean.com</email>
</author>
<published>2019-08-14T12:39:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=204252d7dc8e2936f14ef48346317146a2f5f4af'/>
<id>204252d7dc8e2936f14ef48346317146a2f5f4af</id>
<content type='text'>
This adds missing calls to unwrap/1 for the map_field_* name and value functions and puts them inline with map_expr_fields/1.
Using these functions with "wrapped" nodes fails with badarg.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds missing calls to unwrap/1 for the map_field_* name and value functions and puts them inline with map_expr_fields/1.
Using these functions with "wrapped" nodes fails with badarg.</pre>
</div>
</content>
</entry>
<entry>
<title>erl_syntax: Fix some type declarations</title>
<updated>2019-06-28T07:31:52+00:00</updated>
<author>
<name>Kostis Sagonas</name>
<email>kostis@it.uu.se</email>
</author>
<published>2019-06-28T07:31:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=23952e5c7d1affc10e6c07566c713020663a839a'/>
<id>23952e5c7d1affc10e6c07566c713020663a839a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove 'cond'-expressions from syntax_tools</title>
<updated>2019-06-27T07:20:06+00:00</updated>
<author>
<name>Kostis Sagonas</name>
<email>kostis@it.uu.se</email>
</author>
<published>2019-06-26T09:01:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=74f7e6e38b21c94595f5e45dad1ba364ed11f11a'/>
<id>74f7e6e38b21c94595f5e45dad1ba364ed11f11a</id>
<content type='text'>
'cond' expressions were an experimental addition to the Erlang language
that never matured to the point that it could be incorporated to it.

This pull request takes out the (incomplete anyway) handling of 'cond'
expressions from the syntax_tools application, so as to simplify its
code base.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'cond' expressions were an experimental addition to the Erlang language
that never matured to the point that it could be incorporated to it.

This pull request takes out the (incomplete anyway) handling of 'cond'
expressions from the syntax_tools application, so as to simplify its
code base.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2019-01-16T09:10:40+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-01-16T09:10:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=9d29eb39fa3d928f7be05082e6f2b5d5cc92fd87'/>
<id>9d29eb39fa3d928f7be05082e6f2b5d5cc92fd87</id>
<content type='text'>
* maint:
  syntax_tools: Fix pretty-printing of type funs
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  syntax_tools: Fix pretty-printing of type funs
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax_tools: Fix pretty-printing of type funs</title>
<updated>2019-01-15T10:24:57+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2019-01-15T10:24:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=80b0574260924c4ef888fe319274f9303982d45b'/>
<id>80b0574260924c4ef888fe319274f9303982d45b</id>
<content type='text'>
See also ERL-815.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See also ERL-815.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2018-09-14T07:50:51+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-09-14T07:50:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=0348488330332df56d9a9279a1e3555f9ba876af'/>
<id>0348488330332df56d9a9279a1e3555f9ba876af</id>
<content type='text'>
* maint:
  erts: Add comment about [] and nil() to The Abstract Format
  syntax_tools: Correct erl_syntax:revert/1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* maint:
  erts: Add comment about [] and nil() to The Abstract Format
  syntax_tools: Correct erl_syntax:revert/1
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'hasse/syntax_tools/fix_revert/OTP-15294' into maint</title>
<updated>2018-09-14T07:48:32+00:00</updated>
<author>
<name>Hans Bolinder</name>
<email>hasse@erlang.org</email>
</author>
<published>2018-09-14T07:48:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.ninenines.eu/otp.git/commit/?id=51dcd166c58bf371da4c85250c8d76c27b4148da'/>
<id>51dcd166c58bf371da4c85250c8d76c27b4148da</id>
<content type='text'>
* hasse/syntax_tools/fix_revert/OTP-15294:
  erts: Add comment about [] and nil() to The Abstract Format
  syntax_tools: Correct erl_syntax:revert/1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* hasse/syntax_tools/fix_revert/OTP-15294:
  erts: Add comment about [] and nil() to The Abstract Format
  syntax_tools: Correct erl_syntax:revert/1
</pre>
</div>
</content>
</entry>
</feed>
