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

8518 Commits

Author SHA1 Message Date
6b776e686e parser: display correct position on boolean expression error (#8563) 2021-02-05 16:52:35 +01:00
44ab0154b2 builtin: document last of array.v (#8575) 2021-02-05 16:51:45 +01:00
22e23eda5d doc: use '?' in optional functions (#8583) 2021-02-05 16:51:17 +01:00
a94228bb16 checker: make [] == ArrayAlias([]) an error (#8562) 2021-02-05 16:49:40 +01:00
e78c30d181 clipboard: add android variant (#8585) 2021-02-05 16:49:04 +01:00
9ab1d17cbc fmt: keep __global in struct declarations (#8584) 2021-02-05 16:46:43 +01:00
76ea3e7b41 tools/check-md: allow directories as args and deprecate -all flag (#8582) 2021-02-05 16:46:20 +01:00
12e8e31bb2 doc: document !in (#8546) 2021-02-05 16:45:20 +01:00
81789ee106 tests: add vlib/v/tests/skip_unused/ 2021-02-05 17:27:00 +02:00
867d96a077 checker: use @METHOD for util.timing_start in Checker.mark_used/1 2021-02-05 16:41:55 +02:00
16dffc7c1d compiler: move timing_start/timing_measure to util.timing_start/util.timing_measure 2021-02-05 16:34:56 +02:00
25a3873019 parser,checker: support @METHOD, replaced by 'ReceiverType.MethodName' 2021-02-05 16:32:43 +02:00
d30f94507c checker: enable -skip-unused for more examples 2021-02-05 11:55:40 +02:00
8f160ee3ed ci: run vfmt over vlib/v/gen/c/fn.v 2021-02-05 11:18:29 +02:00
40fff7b56a v.pref: support v -skip-unused run examples/hello_world.v 2021-02-05 11:12:28 +02:00
80697ec7f3 table: .is_used => .usages (a counter, instead of a boolean flag) 2021-02-05 10:03:17 +02:00
231182c3ff docs: vfmt the function example too (fix ci) 2021-02-05 09:30:18 +02:00
e5c9fcb7e9 ci: fix building vdoc, vls, etc 2021-02-05 09:27:14 +02:00
395fcc1476 thirdparty: remove unused glad folder (leftover from glfw) 2021-02-05 09:19:30 +02:00
5a183d23a9 cgen: disable the new [if xxx] logic for now 2021-02-05 08:16:16 +01:00
1084b43ffb all: ast walker for marking unused fns 2021-02-05 08:05:35 +01:00
119dfc0bb0 all: support map[f32]string and map[f64]string (float map keys) too (#8556) 2021-02-04 23:59:49 +01:00
97e36cd97a parser: fix method name test 2021-02-04 22:25:58 +01:00
fdd8c86fdb parser: make sure methods have names 2021-02-04 22:15:16 +01:00
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