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

8436 Commits

Author SHA1 Message Date
7813ecbb75 gg: add draw_convex_poly/2 and draw_empty_poly/2 methods (#8487) 2021-02-01 18:18:23 +02:00
1e07173234 cgen: minor cleanup of array_init (#8477) 2021-02-01 15:56:55 +01:00
6804fdaa56 doc: document $tmpl 2021-02-01 15:45:52 +01:00
c537578481 checker: ensure expr is an lvalue with Struct{...expr (#8489) 2021-02-01 15:18:03 +01:00
d660f2cc6f fmt: insert newline after last HashStmt (#8482) 2021-02-01 14:50:41 +01:00
53a5aad855 cgen: fix fixed array of function (#8490) 2021-02-01 14:50:10 +01:00
8755f40430 fmt: keep comments after imports (#8483) 2021-02-01 14:45:08 +01:00
44ec9e3ebc checker/cgen: put shared struct always on heap (#8492) 2021-02-01 14:39:36 +01:00
5b9a7bf6b3 cgen: support #flag -DWIN32_FULL, when you do NOT want WIN32_FULL 2021-02-01 14:40:51 +02:00
43676330ba fmt: keep braces around @ escaped fields in string interpolation (#8488) weekly.2021.5 2021-02-01 11:04:57 +02:00
8b0401a46f ci: fix a performance-regressions bug, where vmaster was executed with cmd/v from the parent, but vlib from itself 2021-01-31 21:06:55 +02:00
778b83a132 gen: fix multiple blank param with interface (#8480) 2021-01-31 19:44:55 +02:00
effa3188dd cgen: fix type casts to interfaces (#8476) 2021-01-31 19:24:33 +02:00
d25825df57 all: support compile time $env('ENV_VAR') (#8456) 2021-01-31 19:22:42 +02:00
4f4e3e9b61 ci: fix failing windows tests (skip the websockets examples) 2021-01-31 18:37:45 +02:00
2945040a67 gen: fix function with multiple blank params (#8475) 2021-01-31 16:37:26 +02:00
f992099726 checker: check s.$method(arg) argument is []string (#8455) 2021-01-31 15:28:23 +01:00
3be5795724 doc: simplify interface method definition example (#8468) 2021-01-31 15:28:02 +01:00
96466e2b15 examples: move websocket example from x/ 2021-01-31 15:18:54 +01:00
c91f7746fd websocket: minor improvements in the server example 2021-01-31 15:18:04 +01:00
9638013203 gg: fix macos C function definitions 2021-01-31 13:57:06 +01:00
ae60ea4ed5 tests: add regression tests for typeof map and array of fns (#8458) 2021-01-31 12:20:15 +02:00
09c65163b4 cgen: add a destructor caller for the generated _vcleanup, when using -shared (#8464) 2021-01-31 12:10:49 +02:00
7eb7d042ec x.websocket: workaround for _, item in a_map{} bug, causing panic (#8463) 2021-01-31 11:37:32 +02:00
5746ac4dd4 vfmt: remove tracing println for match branches 2021-01-31 11:05:49 +02:00
978359a6fc tests: fix some warnings in preparation for -W test-self 2021-01-31 11:05:17 +02:00
89bf48e3ba ci: fix v -W build-examples 2021-01-31 10:43:49 +02:00
e066e83041 stbi: add proper declarations for C.stbi_load etc. 2021-01-31 10:23:43 +02:00
0081e77969 doc: document interface methods (#8360) 2021-01-31 03:39:46 +01:00
2963425995 cgen: fix fn_with_mut_args (fix #7139) (#8446) 2021-01-31 02:45:45 +01:00
9c2bd24b4f tests: add test for s.$method() with T.methods (#8451) 2021-01-30 18:35:41 +01:00
c5e7956eb5 checker: fix generic_mutable_arrays in functions (#8445) 2021-01-30 18:35:03 +01:00
64d12cdc8d checker: check number of C function arguments for some cases (#8444) 2021-01-30 18:33:36 +01:00
2cadb3e4d8 gen: panic with correct type names (#8355) 2021-01-30 18:54:05 +02:00
849bc6c3d8 tests: fix weird CI failure with error details (#8449) 2021-01-30 18:53:39 +02:00
8505d2ca82 docs: expand on the _d_customflag.v limitations 2021-01-30 18:03:31 +02:00
9c82eec529 checker: support nested propagation cases f(g() ?) (#8447) 2021-01-30 16:53:31 +01:00
19784ab89b docs: document _d_customflag.v files (used by V only when -d customflag is passed) 2021-01-30 17:44:48 +02:00
43c3a3b080 checker: fix compile-time call with string identifier expression (#8415) 2021-01-30 15:24:16 +01:00
058f3ba013 sync: rename m_lock() -> @lock(), r_lock() -> @rlock(), ... (#8443) 2021-01-30 15:23:55 +01:00
8dff63b824 vweb: example: make css in vweb_assets.v work (#8090) 2021-01-30 14:20:13 +01:00
7e3b3a9efc rand: update byte() (#8442) 2021-01-30 14:19:14 +01:00
8c70920695 all: add offsetof (#8380) 2021-01-30 12:57:09 +01:00
c0685eeefc parser: add warning for s.$field.name without brackets (#8411) 2021-01-30 12:56:10 +01:00
97cb7687a2 cgen: minor cleanup of consts (#8441) 2021-01-30 13:35:25 +02:00
ced7649bf8 gen: fix for ... in array (#8428) 2021-01-30 12:27:11 +01:00
a044441224 fmt: keep {} in string interpolation for chained CallExprs (#8422) 2021-01-30 11:58:19 +01:00
2774db077d fmt: keep user choice for newlines in match branches (#8418) 2021-01-30 11:57:57 +01:00
77b3d40f46 checker: fix map = {} (#8435) 2021-01-30 11:55:10 +01:00
dad68e00d5 vup: add a git installer for Windows, when git is not in path, or not installed at all (#8406) (#8421) 2021-01-30 12:53:57 +02:00