Files
Nim/lib
ee7 629b22e3d5 styleCheck: Fix error for sugar and std/with (#16176)
With this commit, we no longer see an error if we pass
`--styleCheck:error` when compiling a file that contains `import sugar`
or `import std/with`.

The problem was that those modules (and only those modules) import
`std/private/underscored_calls`, which contained a styleCheck issue:
its spelling of `nnkArgList` didn't match the `nnkArglist` spelling in
`macros.nim`.

This commit fixes the issue by renaming `nnkArgList` to `nnkArglist`
repo-wide. The other way around would be a breaking change for code that
used `nnkArglist` and `--styleCheck:error`.

Fixes: #16174
2020-12-02 20:48:16 +01:00
..
2017-02-20 17:24:19 +02:00
2020-11-23 22:56:30 +01:00
2019-07-14 16:08:15 +02:00
2020-11-24 12:37:41 +01:00
2020-11-17 18:54:14 +00:00
2020-09-09 12:47:22 +02:00
2013-03-16 23:53:07 +01:00
2020-11-26 10:57:05 +01:00