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

1203 Commits

Author SHA1 Message Date
2dd1d3fcbb all: string interpolation code cleaning (#10204) 2021-05-26 09:30:08 +03:00
560301dbfe cgen: dont preallocate zero length with capacity of 1 2021-05-26 14:51:20 +10:00
39c376bb5b builtin,gen: use operator overloading on ustring (#10197) 2021-05-25 14:51:48 +03:00
ce7f78522d builtin: remove former string operator methods (#10184) 2021-05-24 14:05:29 +03:00
886f69bfcf all: use operator overloading on strings (p. 2) (#10183) 2021-05-24 11:38:31 +03:00
d8d05e0106 all: new string interpolation in pure V (#10181) 2021-05-24 05:20:45 +03:00
7f12bfa563 builtin: optimise sx == sy in the case where strings have common prefixes 2021-05-23 17:22:57 +03:00
5efd8c62d0 ci: fix tests-sanitize-undefined-clang 2021-05-23 15:13:53 +03:00
a27e7f7675 builtin: remove commented code; improve print_backtrace with tcc 2021-05-23 12:37:40 +03:00
ae9f8627fc checker: simplify generic structs (#10167) 2021-05-23 05:54:58 +03:00
7c0f8f7644 builtin: a small optimization in string.replace() 2021-05-22 14:35:36 +03:00
2086e6f1c1 builtin, cgen: implement chunked allocation of 16MB blocks with -prealloc (#10130) 2021-05-19 10:35:56 +03:00
94e7a55b97 builtin: implement -d trace_error
With debugger backtraces, it can help pinpoint the original source of a
bubbled error, until we can store stacktraces in the errors in an
efficient way.
2021-05-18 20:03:00 +03:00
ed6ad728d9 vweb: fix serving static files 2021-05-16 04:28:14 +03:00
274c817028 builtin.string: optimize split_into_lines (#10081) 2021-05-11 18:57:32 +03:00
e6011e83ce builtin: cleanup string.v 2021-05-11 13:59:44 +03:00
159ee00563 builtin: remove import hash 2021-05-10 09:22:50 +03:00
2d2b4f79cc strings: add Builder.cut_to (#10042) 2021-05-07 19:41:27 +03:00
d26ac5692e all: various fixes for [heap]/auto-heap handling (#10033) 2021-05-07 15:58:48 +03:00
2eafea6308 v: reduce the memory usage of the compiler (analysed with heaptrack) 2021-05-06 11:44:48 +03:00
84f9789e72 v: tag more low level functions with [direct_array_access] 2021-05-06 00:35:16 +03:00
4ac751d773 os: add signal_opt and deprecate signal (#10005) 2021-05-05 15:39:02 +03:00
12c3f85507 os: add getuid and geteuid (#10002) 2021-05-05 14:20:11 +03:00
597a774d36 scanner: speed up Scanner.skip_whitespace (~2-3% speed up of -o x.c cmd/v) 2021-05-03 14:14:32 +03:00
feb60674b4 builtin.string: minor fixes in join() (#9952) 2021-05-02 19:31:47 +03:00
3175525b5e builtin.string: optimize replace (#9969) 2021-05-02 19:30:07 +03:00
dbadda84e5 builtin: clean up int.v (#9960) 2021-05-02 16:31:29 +03:00
3363c3ef65 builtin.string: optimize replace() (#9955) 2021-05-01 21:27:49 +03:00
4348c2322d builtin.map: test more key types (#9947) 2021-05-01 14:26:20 +03:00
e05da04b4c builtin: fix termux prints (#9921) 2021-04-29 09:49:26 +03:00
6795b02e24 cgen: fix enum in map (#9912) 2021-04-28 22:11:32 +03:00
1fbf75f2e8 builtin: fix termux println (#9829) 2021-04-28 09:11:50 +03:00
3edbf71770 parser: fix maps with aliases as key (#9900) 2021-04-28 07:45:21 +03:00
4eb8072882 parser: remove ++/-- exception for some modules (#9895) 2021-04-27 01:41:42 +03:00
fc3b628440 v: support $for attr in Test.attributes (#9836) 2021-04-25 18:29:26 +03:00
160b605640 os: use C.GetUserNameW for os.loginname() instead + improvements os.uname() (#9872) 2021-04-25 18:16:14 +03:00
bfe0a7887f builtin,strconv: fix and optimize utf8 and formatting functions (#9874) 2021-04-25 17:57:21 +03:00
187895c93c os: use GetComputerNameW to retrieve hostname on Windows (#9861) 2021-04-24 13:22:04 +03:00
49a2de562b builtin: fix an unused var warning on windows 2021-04-23 15:17:05 +03:00
c7a6d28e13 all: improve unused variable warning (fix x = 1, x += 1 etc) 2021-04-23 13:33:48 +03:00
59e23dbb57 ci: re-enable testing of ./v -freestanding run vlib/os/bare/bare_example_linux.v on ubuntu 2021-04-22 12:50:56 +03:00
7443179cc8 checker: make use of private enum from outside module an error. (#9821) 2021-04-22 07:07:56 +03:00
bd539b6427 vfmt: fix string interpolation formatting with multiple ',",\' and \" . 2021-04-20 20:26:06 +03:00
258be508f4 builtin,os: fix unused return C warnings for real (#9814) 2021-04-20 17:28:58 +03:00
d4f31412b7 v: deprecate @VROOT in favour of @VMODROOT (#9795) 2021-04-19 19:01:47 +03:00
70c651ff17 all: make __global behave consistent with const (#9711) 2021-04-19 17:07:47 +03:00
73352583e7 ci: fix all -cstrict warnings with gcc and clang (#9792) 2021-04-19 15:38:48 +03:00
9ec91f4d58 os: add new function os.loginname(), improve some error messages (#9794) 2021-04-19 14:57:25 +03:00
22351a6fb7 builtin: remove unused return C warnings (#9797) 2021-04-19 14:14:27 +03:00
a45da620e6 builtin: add string representation of ESC (#9799) 2021-04-19 11:41:04 +03:00