1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fmt: run on cmd/v; cgen: fix anonymous functions

This commit is contained in:
Alexander Medvednikov
2020-04-20 07:04:31 +02:00
parent efff96d622
commit c1fc768c1b
5 changed files with 129 additions and 81 deletions

View File

@@ -27,7 +27,7 @@ struct FormatOptions {
}
const (
platform_and_file_extensions = [['windows', '_win.v', '_windows.v'], ['linux', '_lin.v',
platform_and_file_extensions = [['windows', '_windows.v'], ['linux', '_lin.v',
'_linux.v', '_nix.v'], ['macos', '_mac.v', '_darwin.v'], ['freebsd', '_bsd.v', '_freebsd.v'],
['netbsd', '_bsd.v', '_netbsd.v'], ['openbsd', '_bsd.v', '_openbsd.v'], ['solaris', '_solaris.v'],
['haiku', '_haiku.v'], ['qnx', '_qnx.v']]