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

12225 Commits

Author SHA1 Message Date
yuyi
da989e19ca
net: fix errors of new_ip(), new_ip6() and ip6.str() (#13020) 2022-01-03 15:10:15 +02:00
Larpon
88a973b617
sokol: type alias all sgl structs, support sgl_context (#13018) 2022-01-03 15:05:24 +02:00
Delyan Angelov
9974495f5e
ci: install libgc-dev in toml_ci.yml too 2022-01-03 15:03:43 +02:00
Delyan Angelov
e03d52d322
toml: improve SKIP reporting, fix formatting 2022-01-03 13:25:06 +02:00
Delyan Angelov
ee858568ff
toml: ignore CRLF just like LF in line comments, support VTEST_HIDE_OK=1 in tests. 2022-01-03 12:54:16 +02:00
Delyan Angelov
b4111451bf
ci: fix alexcrichton/toml-rs task in toml_ci.yml 2022-01-03 11:15:42 +02:00
Delyan Angelov
3aba840af1
ci: show jq version in toml_ci.yml 2022-01-03 10:52:34 +02:00
yuyi
d5b111ec99
net: fix typo in new_ip() (#13017) 2022-01-03 08:45:26 +02:00
penguindark
1ad4fbd841
regex: add a replace_n function (#13016) 2022-01-03 06:32:24 +02:00
Larpon
4d4398fa8a
sokol: type alias all gfx structs (#13014) 2022-01-02 20:36:01 +02:00
Delyan Angelov
41e763f79c
checker: add error for type StructAlias = Struct struct Struct { field StructAlias } 2022-01-02 15:54:40 +02:00
yuyi
64f1ea6fe9
checker: extract containers.v, struct.v, for.v from checker.v (#13012) 2022-01-02 15:52:19 +02:00
Delyan Angelov
41078bc438
v.eval: fix hardcoded math ops in infix_gen.v, add interpret_test.v 2022-01-02 10:33:21 +02:00
Delyan Angelov
1521d08e84
eval: ignore ast.Module (fixes v interpret file.v regression after 07cf6d9) 2022-01-02 10:09:50 +02:00
Delyan Angelov
9278d4ec19
docs: fix a typo 2022-01-02 09:18:24 +02:00
Alexander Medvednikov
0e1cfd4a28 checker: simplify type sizeof check and fix c2v globals 2022-01-01 19:56:13 +03:00
Delyan Angelov
697eca5ddf
tools: ensure git is installed, when doing vpm operations that require it 2022-01-01 15:40:19 +02:00
penguindark
908296cdfb
regex: improve errors for edge cases (#13008)
* code cleaning, added more clear errors for dots and ORs

* added failed match index for better find functions, updated tests

* added index in match failed, updated tests

* test cleaning

* test check
2022-01-01 09:21:27 +02:00
pancake
7b4ba66720
js: use JS.String instead of string in builtin javascript functions (#13004) 2022-01-01 09:17:08 +02:00
yuyi
7622ff3f54
checker: check using const var as function (#13006) 2022-01-01 09:15:43 +02:00
yuyi
6438512529
checker: add error for for mut var in string { (fix #12998) (#13000) 2021-12-31 09:54:06 +02:00
yuyi
a0a1807e2b
builtin: add charptr str() and change string format (#12973) 2021-12-30 23:34:24 +03:00
Delyan Angelov
b10ff1e41b
checker: infer generic interface type in i := Interface(Struct<u32>{}) 2021-12-30 21:24:52 +02:00
Delyan Angelov
ae036b6146
checker: fix infinite recursion on generic interface cast 2021-12-30 19:28:42 +02:00
Delyan Angelov
df8384b62e
v.scanner: report the start of unfinished string literals too 2021-12-30 18:29:52 +02:00
Delyan Angelov
93c40e696d
all: add support for type MyEnumAlias = MyEnum 2021-12-30 13:42:06 +02:00
Delyan Angelov
bf9f684c59
ast: improve support for type aliases, in TypeSymbol.xyz_info methods 2021-12-30 13:17:10 +02:00
Delyan Angelov
7531f78f67
ast: remove const hack for global_table, use a proper global instead 2021-12-30 13:15:55 +02:00
yuyi
d421f28de4
checker: minor cleanup in cast_expr() (#12995) 2021-12-29 21:48:23 +02:00
Delyan Angelov
4114dd0815
v.builder: fix v -no-retry-compilation -cc tcc -usecache examples/tetris/ 2021-12-29 21:45:01 +02:00
Delyan Angelov
99fdcd2e71
v.builder: fix v -cc tcc -no-retry-compilation build-module vlib/sync/stdatomic 2021-12-29 21:32:30 +02:00
Delyan Angelov
ca5154747e cgen: fix v -usecache examples/news_fetcher.v on macos (.sort() compare_ functions duplication) 2021-12-29 20:15:51 +02:00
Delyan Angelov
537760edcd
ci: fix failing macos job (do not test -usecache for now there) 2021-12-29 18:29:08 +02:00
Delyan Angelov
cb34309f6f
cgen: fix chained ./v -usecache -o v cmd/v (and all other V programs that use maps) 2021-12-29 17:57:04 +02:00
yuyi
cc577e1bfb
parser: check variable redefinition error (#12992) 2021-12-29 13:44:08 +02:00
Delyan Angelov
69c90ef50d
hash.fnv1a: add generic fnv1a.sum64_struct/1 and fnv1a.sum32_struct/1 + tests 2021-12-29 12:03:24 +02:00
Delyan Angelov
7c78bf9466
hash.fnv1a: add fnv1a.sum64_bytes and fnv1a.sum32_bytes, add doc comments and tests 2021-12-29 11:27:26 +02:00
Delyan Angelov
9b8cf1ad37
markused: fix V compiler panics with -skip-unused, for code using generics 2021-12-29 09:48:13 +02:00
Hunam
5607cfbd32
datatypes: add a Queue.last() method (#12987) 2021-12-29 08:01:47 +02:00
penguindark
5e5529441c
docs: document negative indexed slices, add example for a 'list comprehension' (#12986) 2021-12-28 22:29:11 +02:00
Delyan Angelov
43fee6b3d5
all: fix registration of methods with the same name on different generic structs 2021-12-28 21:42:48 +02:00
Delyan Angelov
730b2a9263
sync: move sync.atomic2 to sync.stdatomic, cleanup 2021-12-28 10:16:22 +02:00
yuyi
c1711b8f05
checker: check string cast to number (fix #12982) (#12983) 2021-12-28 07:55:39 +02:00
Alexander Medvednikov
6176ce9f03 all: c2v fixes 2021-12-28 08:00:56 +03:00
penguindark
dadc965082
regex: implement negation groups, more flexibility for bsls, small fixes (#12981)
* removed memory allocations in cleaning during clear calls

* first test implementation of negative groups, more flexibility for bsls

* fixed bsls failed tests

* fmt

* added \n to regex tests
2021-12-27 22:18:48 +02:00
Delyan Angelov
14648fa41e
parser: reduce max_expr_level to 310 (due to more limited stack size on windows) 2021-12-27 20:21:58 +02:00
yuyi
34e175a343
checker: minor cleanup of the fns classification (#12977) 2021-12-27 13:11:10 +02:00
Delyan Angelov
a2eb90ee4e
parser: prevent too deep recursions in p.check_undefined_variables 2021-12-27 12:30:17 +02:00
Toby Webb
35418b8413
cgen: fix compile error on locking interface value (#12883) 2021-12-26 20:01:00 +02:00
Delyan Angelov
c26e040d33
ci: bump retry count to 5 for tcp_test.v 2021-12-26 19:05:05 +02:00