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

6257 Commits

Author SHA1 Message Date
1b914d217e fmt: don't remove mut from if mut smart cast (#6188) 2020-08-22 00:00:02 +02:00
06967d9297 sort: require a mutable receiver 2020-08-21 21:19:37 +03:00
93e6c3df6a cli: various improvements (#6180) 2020-08-20 23:14:53 +02:00
b88569c845 x.net: new net module (#6130) 2020-08-20 23:01:37 +02:00
9b171b76e0 os: call os.real_path/1 before returning in os.find_abs_path_of_executable/1 2020-08-20 19:23:19 +03:00
0c183da116 checker: fix sort return type (#6182) 2020-08-20 17:29:40 +03:00
e8ff94fb8b net.html: simplify map setting (fixes compilation with tcc on aarch64) 2020-08-20 16:45:54 +03:00
dfc4298125 tests: return early in x64_test.v on non AMD64 machines 2020-08-20 15:42:26 +03:00
8c7bcad6b1 cgen: support for $if amd64 {} and $if aarch64 {} 2020-08-20 15:28:37 +03:00
6eea13ecc2 clipboard: wrap pointer indexing in unsafe block (#6178) 2020-08-20 10:33:12 +02:00
d8d707b4fe doc: $else (#6174) 2020-08-20 08:33:08 +02:00
b1c042b3ea ci: test v self compilation 4 times with tcc 2020-08-20 08:32:05 +02:00
9da7349f63 gg: minor fixes 2020-08-20 08:32:05 +02:00
eabc2daf86 v.mod: remove commas; add example for v.vmod (#6169) 2020-08-19 16:07:10 +02:00
88bca9d17a clipboard: wrap vstring call in unsafe (#6170) 2020-08-19 16:06:23 +02:00
e6e1011e47 examples: cli: more readable and informative program output (#6168) 2020-08-19 14:38:45 +02:00
217f04e311 checker: disallow casting to bool, use some_int != 0 instead (#6138) 2020-08-19 14:37:55 +02:00
55b025413d fmt: temporary struct attr fix 2020-08-19 14:33:45 +02:00
d9aae023b1 android: initial support for C output using sokol_main (#6164) 2020-08-19 11:00:15 +02:00
c1651bd271 gg: fixes and Android support (#6161) 2020-08-19 07:10:42 +02:00
c42ca84850 pg: fix array init warnings (#6163) 2020-08-19 07:10:09 +02:00
e69f091bbd parser: require ( on same line as name token for fn call or cast (#6160) 2020-08-19 02:37:17 +02:00
51bd69cdd8 cgen: fix u64 in struct str() 2020-08-18 16:05:11 +02:00
7727aad90f net.http: fix windows compilation warning 2020-08-18 12:14:21 +03:00
2f6757a56a Revert "cgen: fix all -Wmissing-variable-declarations (#5802)"
This reverts commit ae349ca6ba.

Fixing these warnings, unfortunately also means, that hot code
(which reloads a shared library during runtime) can not use V
constants, because the private static C variables in the shared
library will not be initialized by _vinit(), which is only called
by the main V program.

For example in examples/hot_reload/bounce.v, using `gx.blue`,
defined as:
`    blue   = Color { r:   0, g:   0, b: 255 }`
... will instead use a const with all 0 fields (i.e. a black color).
2020-08-18 11:55:55 +03:00
937a3e14c5 cgen: add g.options_typedefs, g.shared_types, g.channel_definitions 2020-08-18 11:45:36 +03:00
ed156838e6 examples: add 2048 game 2020-08-18 09:29:43 +03:00
b5b53a5311 vpm: add 'vpm upgrade' to update all the outdated vpm modules (#6157) 2020-08-18 02:44:18 +02:00
fe5575f384 fast: checkout each commit 2020-08-18 01:11:58 +02:00
40d91cc23b gg: handle bad image index 2020-08-18 01:08:58 +02:00
c599a4c7de checker: remove pos+1 on innermost call 2020-08-18 07:39:40 +10:00
0d7cc8829a cgen: implement channel push()/pop() using <- operator (#6154) 2020-08-17 23:35:36 +02:00
5c98c0760b gg: use OpenGL on Windows until D3D issues resolved (#6155) 2020-08-17 23:34:51 +02:00
b5c1ea44dc all: fix mutability after if-smartcast (#6129) 2020-08-17 21:11:11 +02:00
36c98b3e5d cgen: implement fixed array 'for in' for lvalue condition (#6151) 2020-08-17 21:10:47 +02:00
46b4e2a0cd checker: checkmatch types (#6149) 2020-08-17 20:19:21 +02:00
dab639662f http: fix new warnings (#6153) 2020-08-17 20:17:17 +02:00
fa11e124dd term: add documentation (#6097) 2020-08-17 20:16:18 +02:00
9a5f040f72 all: handle <- arrow token for channel operations (#6152) 2020-08-17 20:12:00 +02:00
c01fd4ac58 parser: remove extra scopes from if & match & fix scope end_pos 2020-08-18 01:51:25 +10:00
6ba6a22a77 checker: prevent from casting non-struct to struct (#6143) 2020-08-17 11:19:44 +02:00
0c7d73c8b0 sync/channels: use references for chan mut X testcase (#6145) 2020-08-16 23:01:49 +02:00
2aedece23d readme: typo (#6144) 2020-08-16 22:45:03 +02:00
b2059c481a checker: fix an incorrect name test 2020-08-16 19:24:00 +02:00
f965ddae49 parser: handle several errors in types; cgen: objC includes 2020-08-16 19:16:59 +02:00
191c908f3a tests/valgrind: vfmt fn_with_return_should_free_local_vars.vv 2020-08-16 13:22:32 +03:00
fbe02c5ae1 tests/valgrind: add skipped fn_with_return_should_free_local_vars.vv (-autofree) 2020-08-16 13:20:02 +03:00
fc7a108366 v.builder: fix quoting when building thirdparty source files 2020-08-16 10:18:14 +03:00
29528196f2 os: close opened file descriptors in cp() (#6142) 2020-08-16 04:55:10 +02:00
bab5c21224 parser: warn when fixed-size ArrayInit doesn't have trailing {}. (#6137) 2020-08-16 04:54:05 +02:00