<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/ruby_parser.c, branch v4.0.3</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Remove rb_enc_associate for Parser</title>
<updated>2025-02-15T06:37:09+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-02-08T03:44:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=23c4ac9559a05d7be4534d8e552d8dc95e272867'/>
<id>23c4ac9559a05d7be4534d8e552d8dc95e272867</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rb_exc_raise for Parser</title>
<updated>2025-02-02T07:58:15+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-02-02T06:53:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ace39a3ed40cc32ff8d48893173413a7e05b8316'/>
<id>ace39a3ed40cc32ff8d48893173413a7e05b8316</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rb_usascii_encoding for Parser</title>
<updated>2025-01-28T09:22:35+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-01-27T14:41:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=baf22a057887ec9e3a03203f607029f2517ae758'/>
<id>baf22a057887ec9e3a03203f607029f2517ae758</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rb_obj_as_string for Parser</title>
<updated>2025-01-20T14:52:56+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-01-20T14:08:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5c95898e930051ecc48d5cd2dd3434c02dd661ad'/>
<id>5c95898e930051ecc48d5cd2dd3434c02dd661ad</id>
<content type='text'>
Ruby Parser not used rb_obj_as_string.
And obj_as_string property can be removed from Universal Parser.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ruby Parser not used rb_obj_as_string.
And obj_as_string property can be removed from Universal Parser.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove SYM2ID for Parser</title>
<updated>2025-01-06T11:17:47+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-01-04T04:42:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=975461bf885b8fb791cf048ad39c79924d28e4e9'/>
<id>975461bf885b8fb791cf048ad39c79924d28e4e9</id>
<content type='text'>
Ruby Parser not used SYM2ID.
And sym2id property can be removed from Universal Parser.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ruby Parser not used SYM2ID.
And sym2id property can be removed from Universal Parser.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rb_ary_push for parser</title>
<updated>2025-01-02T08:11:45+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2025-01-01T06:59:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=ba82399558dc35647280980648fd4b560b6a7fe7'/>
<id>ba82399558dc35647280980648fd4b560b6a7fe7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Bug #20969] Pass `assignable` from ripper</title>
<updated>2024-12-19T14:20:09+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-12-19T14:20:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7b2ae8df905d7bbc084d31a8f55cecc7e7c422b3'/>
<id>7b2ae8df905d7bbc084d31a8f55cecc7e7c422b3</id>
<content type='text'>
For the universal parser, `rb_reg_named_capture_assign_iter_impl`
function is shared between the parser and ripper.  However
`parser_params` struct is partially different, and `assignable`
function depends on that part indirectly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For the universal parser, `rb_reg_named_capture_assign_iter_impl`
function is shared between the parser and ripper.  However
`parser_params` struct is partially different, and `assignable`
function depends on that part indirectly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove rb_ary_new for parser</title>
<updated>2024-10-25T13:32:38+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2024-09-30T09:30:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5c1e43277e12c2ca001945b302b5c12bf3093ed9'/>
<id>5c1e43277e12c2ca001945b302b5c12bf3093ed9</id>
<content type='text'>
rb_ary_new function was not used by the parser and could be removed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
rb_ary_new function was not used by the parser and could be removed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove on `RSTRING_END` dependency from parser</title>
<updated>2024-09-27T16:59:33+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2024-09-27T15:20:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7e19904c88fde024051333dfbd534b9fd3b26bf9'/>
<id>7e19904c88fde024051333dfbd534b9fd3b26bf9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reduce `is_ascii_string` function dependency for parser</title>
<updated>2024-09-27T10:34:35+00:00</updated>
<author>
<name>S-H-GAMELINKS</name>
<email>gamelinks007@gmail.com</email>
</author>
<published>2024-09-26T13:04:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7f83bd3732b9ecb66655416a58b4c2bf329afa20'/>
<id>7f83bd3732b9ecb66655416a58b4c2bf329afa20</id>
<content type='text'>
Changed to use `rb_parser_is_ascii_string` function instead of `is_ascii_string` function
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changed to use `rb_parser_is_ascii_string` function instead of `is_ascii_string` function
</pre>
</div>
</content>
</entry>
</feed>
