<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/vim-git.git/src/testdir/test_vim9_expr.vim, branch v8.2.4049</title>
<subtitle>github.com: vim/vim.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/'/>
<entry>
<title>patch 8.2.4049: Vim9: reading before the start of the line with "$"</title>
<updated>2022-01-09T13:36:28+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2022-01-09T13:36:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=5f25c3855071bd7e26255c68bf458b1b5cf92f39'/>
<id>5f25c3855071bd7e26255c68bf458b1b5cf92f39</id>
<content type='text'>
Problem:    Vim9: reading before the start of the line with "$" by itself.
Solution:   Do not subtract one when reporting the error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: reading before the start of the line with "$" by itself.
Solution:   Do not subtract one when reporting the error.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3897: Vim9: second argument of map() and filter() not checked</title>
<updated>2021-12-25T21:43:28+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-25T21:43:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=1802405d71da20dff510690bf14f6da085836125'/>
<id>1802405d71da20dff510690bf14f6da085836125</id>
<content type='text'>
Problem:    Vim9: the second argument of map() and filter() is not checked at
            compile time.
Solution:   Add more specific type check for the second argument.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: the second argument of map() and filter() is not checked at
            compile time.
Solution:   Add more specific type check for the second argument.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3890: Vim9: type check for using v: variables is basic</title>
<updated>2021-12-24T21:36:12+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-24T21:36:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=d787e40fdbe6f4d8bf47d36186c1d9d51c29b853'/>
<id>d787e40fdbe6f4d8bf47d36186c1d9d51c29b853</id>
<content type='text'>
Problem:    Vim9: type check for using v: variables is basic.
Solution:   Specify a more precise type.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: type check for using v: variables is basic.
Solution:   Specify a more precise type.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3877: function does not abort after a type error in compare</title>
<updated>2021-12-22T21:40:33+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-22T21:40:33+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=28fbbeac7046f33db350294908eecb380042d553'/>
<id>28fbbeac7046f33db350294908eecb380042d553</id>
<content type='text'>
Problem:    Function does not abort after a type error in compare
Solution:   Check getting number fails. (closes #9384)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Function does not abort after a type error in compare
Solution:   Check getting number fails. (closes #9384)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3854: Vim9: inconsistent arguments for test functions</title>
<updated>2021-12-19T18:33:23+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-19T18:33:23+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=86b3ab4fa0de3e8884ab6a6ced2a70592b937d0f'/>
<id>86b3ab4fa0de3e8884ab6a6ced2a70592b937d0f</id>
<content type='text'>
Problem:    Vim9: inconsistent arguments for test functions.
Solution:   When :def function and script have different arguments use a list
            with two items instead of a separate function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: inconsistent arguments for test functions.
Solution:   When :def function and script have different arguments use a list
            with two items instead of a separate function.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3835: the inline-function example does not work</title>
<updated>2021-12-17T12:45:22+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-17T12:45:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=259f443a934c6f2447a14bfe54403903416a9af0'/>
<id>259f443a934c6f2447a14bfe54403903416a9af0</id>
<content type='text'>
Problem:    The inline-function example does not work.
Solution:   Drop ":let".  Add EX_EXPR_ARG to CMD_var. (issue #9352)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    The inline-function example does not work.
Solution:   Drop ":let".  Add EX_EXPR_ARG to CMD_var. (issue #9352)
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3815: Vim9: cannot have a multi-line dict inside a block</title>
<updated>2021-12-15T15:41:44+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-15T15:41:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=ce7eada12ea16c830332042f0021a9564bbb25af'/>
<id>ce7eada12ea16c830332042f0021a9564bbb25af</id>
<content type='text'>
Problem:    Vim9: cannot have a multi-line dict inside a block.
Solution:   Do not split the command at a line break, handle NL characters
            as white space.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: cannot have a multi-line dict inside a block.
Solution:   Do not split the command at a line break, handle NL characters
            as white space.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3810: Vim9: expr4 test fails on MS-Windows</title>
<updated>2021-12-14T18:57:45+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-12-14T18:57:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=b334137acffd7a2b2ab8524e54d4c55ebf4518ea'/>
<id>b334137acffd7a2b2ab8524e54d4c55ebf4518ea</id>
<content type='text'>
Problem:    Vim9: expr4 test fails on MS-Windows.
Solution:   Do not give an error for a missing function name when skipping.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: expr4 test fails on MS-Windows.
Solution:   Do not give an error for a missing function name when skipping.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3353: Vim9: type of argument for negate not checked at compile time</title>
<updated>2021-08-15T18:36:28+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-08-15T18:36:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=cd6b4f300189b4920f7ee7f0204338e91210674b'/>
<id>cd6b4f300189b4920f7ee7f0204338e91210674b</id>
<content type='text'>
Problem:    Vim9: type of argument for negate not checked at compile time.
Solution:   Add a compile time check.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: type of argument for negate not checked at compile time.
Solution:   Add a compile time check.
</pre>
</div>
</content>
</entry>
<entry>
<title>patch 8.2.3311: Vim9: check for DO_NOT_FREE_CNT is very slow</title>
<updated>2021-08-07T15:20:16+00:00</updated>
<author>
<name>Bram Moolenaar</name>
<email>Bram@vim.org</email>
</author>
<published>2021-08-07T15:20:16+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/vim-git.git/commit/?id=dae453f3397a26a53301d7327e6ed43e8b392035'/>
<id>dae453f3397a26a53301d7327e6ed43e8b392035</id>
<content type='text'>
Problem:    Vim9: check for DO_NOT_FREE_CNT is very slow.
Solution:   Move to a separate function so it can be skipped by setting
            $TEST_SKIP_PAT.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Problem:    Vim9: check for DO_NOT_FREE_CNT is very slow.
Solution:   Move to a separate function so it can be skipped by setting
            $TEST_SKIP_PAT.
</pre>
</div>
</content>
</entry>
</feed>
