<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src/vim9compile.c, branch v8.2.1227</title>
<subtitle>github.com: vim/vim.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/'/>
<entry>
<title>patch 8.2.1227: Vim9: allowing both quoted and # comments is confusing</title>
<updated>2020-07-17T18:36:00+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-17T18:36:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f5be8cdb77786f93c23237d7d8162feca92067e2'/>
<id>f5be8cdb77786f93c23237d7d8162feca92067e2</id>
<content type='text'>
Problem:    Vim9: allowing both quoted and # comments is confusing.
Solution:   Only support # comments in Vim9 script.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: allowing both quoted and # comments is confusing.
Solution:   Only support # comments in Vim9 script.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1223: Vim9: invalid type error for function default value</title>
<updated>2020-07-15T17:48:20+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-15T17:48:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=e30f64b4b551bb00318dc09c2f13ecd3d711119a'/>
<id>e30f64b4b551bb00318dc09c2f13ecd3d711119a</id>
<content type='text'>
Problem:    Vim9: invalid type error for function default value.
Solution:   Use right argument index. (closes #6458)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: invalid type error for function default value.
Solution:   Use right argument index. (closes #6458)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1218: Vim9: cannot use 'text'-&gt;func()</title>
<updated>2020-07-15T12:15:52+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-15T12:15:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=3d48e25dcb661eb09ccdaa73d4e2559201ff2eb1'/>
<id>3d48e25dcb661eb09ccdaa73d4e2559201ff2eb1</id>
<content type='text'>
Problem:    Vim9: cannot use 'text'-&gt;func().
Solution:   Recognize string at start of command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: cannot use 'text'-&gt;func().
Solution:   Recognize string at start of command.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1201: Vim9: crash when passing number as dict key</title>
<updated>2020-07-13T16:55:48+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-13T16:55:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=f1a2368d81fc3f70dfcf7d577957185da6ccf0b6'/>
<id>f1a2368d81fc3f70dfcf7d577957185da6ccf0b6</id>
<content type='text'>
Problem:    Vim9: crash when passing number as dict key.
Solution:   Check key type to be string. (closes #6449)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: crash when passing number as dict key.
Solution:   Check key type to be string. (closes #6449)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1191: Vim9: crash when function calls itself</title>
<updated>2020-07-12T15:31:09+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-12T15:31:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=985116ae0b7b3ef17e0c0ea2669068dd6b3b39c7'/>
<id>985116ae0b7b3ef17e0c0ea2669068dd6b3b39c7</id>
<content type='text'>
Problem:    Vim9: crash when function calls itself.
Solution:   Add status UF_COMPILING. (closes #6441)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: crash when function calls itself.
Solution:   Add status UF_COMPILING. (closes #6441)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1183: assert_fails() checks the last error message</title>
<updated>2020-07-11T20:14:59+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-11T20:14:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=9b7bf9e98f06ece595fed7a3ff53ecce89797a53'/>
<id>9b7bf9e98f06ece595fed7a3ff53ecce89797a53</id>
<content type='text'>
Problem:    assert_fails() checks the last error message.
Solution:   Check the first error, it is more relevant.  Fix all the tests
            that rely on the old behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    assert_fails() checks the last error message.
Solution:   Check the first error, it is more relevant.  Fix all the tests
            that rely on the old behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1178: Vim9: filter function recognized as command modifier</title>
<updated>2020-07-11T11:40:45+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-11T11:40:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=b074e8b8d4d3cefefc675dfaf3982d388ee07772'/>
<id>b074e8b8d4d3cefefc675dfaf3982d388ee07772</id>
<content type='text'>
Problem:    Vim9: filter function recognized as command modifier, leading to a
            crash.
Solution:   Clear cmdmod after freeing items.  Do not recognize a command
            modifier followed by non-white space. (closes #6434)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: filter function recognized as command modifier, leading to a
            crash.
Solution:   Clear cmdmod after freeing items.  Do not recognize a command
            modifier followed by non-white space. (closes #6434)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1176: Vim9: not enough type checking in Vim9 script</title>
<updated>2020-07-10T20:45:38+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-10T20:45:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=543e6f3467f208930a5d7fadb82133334bf31356'/>
<id>543e6f3467f208930a5d7fadb82133334bf31356</id>
<content type='text'>
Problem:    Vim9: not enough type checking in Vim9 script.
Solution:   Use same type checking as in a :def function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: not enough type checking in Vim9 script.
Solution:   Use same type checking as in a :def function.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1175: Vim9: cannot split a line before ".member"</title>
<updated>2020-07-10T19:50:41+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-10T19:50:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=a7eedf317a806fceec1ddd8f9bebed6e00be0ed2'/>
<id>a7eedf317a806fceec1ddd8f9bebed6e00be0ed2</id>
<content type='text'>
Problem:    Vim9: Cannot split a line before ".member".
Solution:   Check for ".member" after line break.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: Cannot split a line before ".member".
Solution:   Check for ".member" after line break.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.1167: Vim9: builtin function method call only supports first arg</title>
<updated>2020-07-09T19:20:47+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2020-07-09T19:20:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/vim-git.git/commit/?id=389df259c49d1ca4f7aa129b702f6083985b1e73'/>
<id>389df259c49d1ca4f7aa129b702f6083985b1e73</id>
<content type='text'>
Problem:    Vim9: builtin function method call only supports first argument.
Solution:   Shift arguments when needed. (closes #6305, closes #6419)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: builtin function method call only supports first argument.
Solution:   Shift arguments when needed. (closes #6305, closes #6419)
</pre>
</div>
</content>
</entry>
</feed>
