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

8494 Commits

Author SHA1 Message Date
5eef730290 builder: make msvc build if v path contains spaces (#8552) 2021-02-04 20:45:59 +01:00
48892a52fa strings: make valgrind reports for strings builders more usefull (#8553) 2021-02-04 20:45:35 +01:00
97c0ef3505 orm: struct field support (#8517) 2021-02-04 20:28:33 +01:00
856246c858 builder: make repl work if path contains spaces (#8550) 2021-02-04 18:18:18 +01:00
a0cbe48977 vweb: fix @include (#8535) 2021-02-04 17:07:04 +01:00
abde1cd73d cgen: fix array/map of alias to string (#8549) 2021-02-04 17:52:14 +02:00
32cc95a340 test-cleancode: check some of the examples too 2021-02-04 17:34:59 +02:00
3e4e0a35e3 vvet: fix silent exit when invoked on a single .v file. 2021-02-04 17:23:58 +02:00
1e9ec6a126 vfmt: exit(1) after vfmt-ing a file with a syntax error 2021-02-04 16:00:14 +02:00
c6552d7780 rand.util: add sample_r and sample_nr (#8539) 2021-02-04 14:56:53 +02:00
a976876211 v.token: correct some comments, and add some missing comments (#8542) 2021-02-04 09:18:38 +02:00
162c42dbe9 ast: fix new_struct := MyStruct{...(*old_struct)} (#8544) 2021-02-04 09:14:43 +02:00
27239db427 builder: show file:line when import fails (#8537) 2021-02-04 09:09:54 +02:00
112c652ace cgen: auto initialize chan that are struct elements (#8541) 2021-02-04 00:07:20 +01:00
f013e65670 checker/cgen: support lock expressions x := rlock s { s.get() } (#8540) 2021-02-03 23:56:58 +01:00
cee00a3551 cgen: create enclosing block on C side for V lock blocks (#8538) 2021-02-03 23:25:01 +01:00
2424e2cb02 cgen: fix for rlock/lock handling (#8536) 2021-02-03 17:33:18 +01:00
de37b52d4b checker: check goto label exists (#8523) 2021-02-03 15:20:10 +01:00
82482167ce vlib: replace all goto statements with labelled break (#8531) 2021-02-03 15:19:42 +01:00
7ec116d588 all: only allow defining == and < and auto generate !=, >, >= and <= (#8520) 2021-02-03 15:18:38 +01:00
9dcf673216 all: make lock and rlock dead lock free :-) (#8534) 2021-02-03 15:16:52 +01:00
f4b757e47d examples: add examples/vweb/server_sent_events; implement vweb.sse 2021-02-03 16:03:06 +02:00
a73c20916d checker: refactor and clean up c.check_basic() (#8508) 2021-02-03 11:57:06 +02:00
4b99d6af95 cgen: fix bug with duplicate defer generation (#8503) 2021-02-03 11:40:21 +02:00
b40252bd97 checker: merge array_filter_fn_err tests (#8506) 2021-02-03 11:27:11 +02:00
9bcb57eb1f checker: merge array_map_fn_err tests (#8507) 2021-02-03 11:26:26 +02:00
ea06966fd4 fmt: hide ´[]Type{} instead of []Type´ and ´(f mut Foo)´ warnings (#8528) 2021-02-03 11:25:08 +02:00
49a6f9fb39 README.md: change the V logo url to point to the official V logo repository (#8530) 2021-02-03 11:24:35 +02:00
e30e794884 checker: add check for using a private const in another module (#8501) 2021-02-03 10:17:13 +02:00
3ef4885094 vfmt: enable colored warnings/errors (#8527) 2021-02-03 10:03:41 +02:00
df0520b43a checker,cgen: make shared behave like mut inside lock - and like non-mut inside rlock (#8526) 2021-02-03 01:20:19 +02:00
91af2418de ftp: minor optimization in dir() (#8518) 2021-02-02 18:51:55 +01:00
9f662002da doc: improve docs for goto, sizeof, __offsetof (#8522) 2021-02-02 18:51:40 +01:00
7875164d91 cgen: add gen_alias_equlity_fn (#8514) 2021-02-02 18:37:57 +01:00
c818ad97eb examples: tetris: better mobile device support (#8519) 2021-02-02 18:37:43 +01:00
02bef1ae2b vdoc: fix segfault on v doc -m -f html vlib 2021-02-02 17:38:32 +02:00
ffedbe4b81 cgen: move cgen from v.gen to v.gen.c (#8515) 2021-02-02 15:41:51 +01:00
d477e525bb checker/gen: fix generic struct init (#8322) 2021-02-03 00:42:00 +11:00
58b37519e0 scanner: fix warning for \" after string interpolation (#8510) 2021-02-02 14:14:06 +02:00
1de299ad22 cgen: allow shared initialization from return values of functions (#8512) 2021-02-02 14:13:13 +02:00
975206f38e examples: support better placment and scaling on nonsquare viewports in cube.v (#8513) 2021-02-02 14:09:40 +02:00
17062dc5c8 v.pref: support -obf in addition to -obfuscate, as described in v help build 2021-02-02 12:24:34 +02:00
5aaeac79fa ci: fix compilation (#8511) 2021-02-02 12:06:54 +02:00
d57a9c419d examples: add net_udp_server_and_client.v 2021-02-02 10:36:56 +02:00
2c4674eb42 cgen: obfuscate functions 2021-02-02 09:14:41 +01:00
5ec6f7a781 ftp: fix error in dir() (#8504) 2021-02-02 08:22:52 +01:00
9a2820fa7b checker: fix pass fixed array of function as argument (#8502) 2021-02-02 03:58:54 +01:00
a0a33f7ff1 checker: fix map of function as argument and direct call of function in map (#8494) 2021-02-02 03:58:32 +01:00
969f19daf4 orm: fix null strings (#8497) 2021-02-01 21:44:09 +01:00
8bf3fe5d48 docs: remove & from shared initializers (#8499) 2021-02-01 21:43:45 +01:00