Delyan Angelov
e53682320c
v.gen.c: fix compiling `go f(x)` for `x` of the same struct in different .v files with parallel cgen
2021-10-06 22:12:21 +03:00
Delyan Angelov
b4d1429ef0
tests: rename `as_cast_literal.v` to `as_cast_literal_test.v`
2021-10-05 11:57:57 +03:00
05st
7555b337b9
cgen: fix expr_as_cast for int/float literals ( #12067 )
2021-10-05 09:53:05 +03:00
yuyi
03269f9854
cgen: fix error of reference struct str() ( #12061 )
2021-10-04 09:58:50 +03:00
yuyi
82e6d6e51d
cgen: fix threads array wait without go calls ( fix #12009 ) ( #12050 )
2021-10-03 18:24:44 +03:00
Ekopalypse
9be16eba63
v.gen.c: add tests to ensure the same calling convention is used on exported functions for -m32/-m64 ( #11977 )
2021-10-03 15:47:08 +03:00
spaceface
9b6e07e2a6
cgen: support `index` and `in` for sumtype/interface arrays ( #12051 )
2021-10-03 15:44:13 +03:00
05st
129c81f34d
cgen: implement eq operator for interfaces ( #12047 )
2021-10-03 09:04:05 +03:00
Delyan Angelov
02e4aa0f0e
v.checker: fix panic for `a, b, c = fn_returning_several_maps()`
2021-10-02 18:40:35 +03:00
05st
cc4af235f3
cgen: fix if-expression code generation if it evaluates to propagating optional / or block ( #12032 )
2021-10-02 14:30:04 +03:00
05st
60ecbec8ea
cgen: fix closure code gen with if statement in definition ( #12028 )
2021-10-01 16:52:34 +03:00
yuyi
f2c710d306
cgen: fix fn mut args with interface type ( #12012 )
2021-09-29 13:54:23 +03:00
yuyi
5d3795e876
cgen: fix the C codegen error for '_ = map[key]' ( fix #11999 ) ( #12000 )
2021-09-28 18:45:50 +03:00
crthpl
85b58b03a3
cgen: parallelize ( #10844 )
2021-09-28 10:28:04 +03:00
yuyi
d6a4bce2ef
checker: fix generic array.map with generic callback fn ( #11991 )
2021-09-27 17:50:15 +03:00
Delyan Angelov
6a2ef733de
v.parser: add a generated `.all(.flag1|.flag2)` method to `[flag]` enums
...
Unlike `.has(.flag1|.flag2)`, which is true, for any of `.flag1` or `.flag2`,
the new method `.all()` tests whether *all flags* are set at the same time.
2021-09-26 21:40:44 +03:00
yuyi
d93737dd34
cgen: fix assign map get to blank ( fix #11508 ) ( #11982 )
2021-09-26 13:07:51 +03:00
yuyi
e09860731f
cgen: fix if expr with complex nested array call ( #11979 )
2021-09-26 07:35:48 +03:00
yuyi
d329e1decd
cgen: fix if expr with nested array calls ( fix #11953 ) ( #11973 )
2021-09-25 20:38:33 +03:00
Ekopalypse
400ab7876b
ast: fix fixed array typedef generation issue ( #11962 )
2021-09-24 17:01:42 +03:00
Delyan Angelov
930b95f76c
v.gen.c: fix uninitialised value usages regression after e5fb4e4
2021-09-23 12:24:03 +03:00
Delyan Angelov
8837712f2b
rand: fix leaks with -autofree
2021-09-23 12:24:03 +03:00
Alexander Medvednikov
27f5c35bde
autofree: test returning optionals
2021-09-23 09:18:01 +03:00
yuyi
b8935551f1
cgen: fix nested array call ( #11948 )
2021-09-23 08:50:37 +03:00
Alexander Medvednikov
7b60367512
autofree: free reference types with -experimental for now
2021-09-23 04:35:09 +03:00
Ruofan XU
52b53f17b2
scanner: clean up scanning of `>` ( #11943 )
2021-09-23 02:24:23 +03:00
Delyan Angelov
bf2569a9a8
all: support `mut volatile x := 123` declarations ( #11940 )
2021-09-22 13:06:30 +03:00
yuyi
e5fb4e4845
cgen: fix if expr with array call ( fix #11557 ) ( #11569 )
2021-09-22 02:21:18 +03:00
Alexander Ivanov
b9720f5d9e
cgen: fix struct init with multiple branches, fixes #11564 ( #11570 )
2021-09-22 00:46:07 +03:00
yuyi
de4c0c237b
cgen: fix if infix expr with array.all/any() ( #11567 )
2021-09-21 16:20:41 +03:00
yuyi
108a01d65f
fmt: fix unnecessary line break in array init ( fix #11448 ) ( #11562 )
2021-09-21 16:20:09 +03:00
yuyi
d6fa6a459c
checker: fix generic sumtype method ( #11565 )
2021-09-21 16:19:43 +03:00
ChAoS_UnItY
95136cbfc7
all: add unsigned shift operators ( #11536 )
2021-09-21 14:02:17 +03:00
Alexander Medvednikov
f6bdc6b87e
tmpl: fix <div> inside <div>
2021-09-21 07:54:10 +03:00
Alexander Medvednikov
4aa99e4303
tmpl: add a <div> test
2021-09-21 02:11:33 +03:00
El Koulali András
9c4507d115
cgen: fix illegal character encoding with rune consts above 127 ( #11550 )
2021-09-20 10:45:42 +03:00
Delyan Angelov
1de4f1af2e
ci: reduce chance of spurious go_wait_option_test.v failures by retrying it 3 times
2021-09-20 10:32:40 +03:00
05st
f9f4867c25
tmpl: fix $tmpl comptime operation only working in return statement ( #11541 )
2021-09-19 23:22:26 +03:00
Delyan Angelov
7bd145d88a
os,net: cleanup deprecated @VROOT usages
2021-09-19 16:24:24 +03:00
Ruofan XU
b343f19bec
v.scanner: fix ambiguity of two-level generics and shift-right ( #11540 )
2021-09-19 16:22:28 +03:00
Delyan Angelov
b5d8c53a0c
v.gen.c: fix the :X string interpolation format for isize/usize on 64bit systems
2021-09-19 05:09:03 +03:00
yuyi
8501217a4e
cgen: add gen_free_for_type_array/map() ( #11530 )
2021-09-18 15:18:32 +03:00
Delyan Angelov
df8a4a03a0
tests: support `// vtest retry: 4` for marking flaky tests
2021-09-18 11:48:32 +03:00
yuyi
39ad6da506
checker, cgen: generate .free() methods for custom structs automatically ( #11529 )
2021-09-18 09:38:42 +03:00
Alexander Medvednikov
6d47dd22df
autofree: free references
2021-09-18 04:19:16 +03:00
Ruofan XU
9180647f99
scanner, fmt: fix multi-level generics ( #11517 )
2021-09-17 21:44:31 +03:00
Alexander Ivanov
30e53c95c7
checker: handle `if _likely_(x is Interface) {` from #11485 ( #11519 )
2021-09-17 21:01:12 +03:00
yuyi
fb75d528eb
builder: remove panics, when cleaning up tmp files after tests ( #11525 )
2021-09-17 20:56:33 +03:00
Delyan Angelov
0a18690a4f
v.gen.c: fix assert `f().len == 1` calling f() twice (closes issue 11501)
2021-09-16 19:01:35 +03:00
yuyi
d5e00b0920
checker, cgen: fix generic arrays sum() ( #11502 )
2021-09-16 07:08:28 +03:00