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

4494 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
9da7349f63 gg: minor fixes 2020-08-20 08:32:05 +02:00
88bca9d17a clipboard: wrap vstring call in unsafe (#6170) 2020-08-19 16:06:23 +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
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
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
a02593204f checker: forbid aliasing an alias (#6118) 2020-08-16 04:53:16 +02:00
bf065674cc json: maps, memory leak, and error forwarding (#6116) 2020-08-16 02:30:37 +02:00
e7b2aefd36 v.pref: handle | as separators in -path option parsing again (as documented in the help) 2020-08-15 22:09:40 +03:00
c2b4c645a1 sync/channels: document more benchmark results (#6135) 2020-08-15 11:20:51 +02:00
0f0a91fc9e parser: support custom fixed size ArrayInit: [3]int{init: -1} (#6114) 2020-08-15 11:01:54 +02:00
5f3ced7213 builder: only include os when building .vsh files (#6134) 2020-08-14 21:57:32 +02:00
9602a25a0b all: add builtin channel type chan elem_type (#6126) 2020-08-14 21:18:42 +02:00
75212f9fab cgen: error if ForInStmt is not handled (#6131) 2020-08-14 21:01:43 +02:00