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

381 Commits

Author SHA1 Message Date
Rémi
625dc6e0ff
doc: enum methods (#10572) 2021-06-28 16:25:02 +03:00
shadowninja55
878efcdade
doc: improve selective import docs (#10573) 2021-06-26 18:10:30 +03:00
yuyi
e648578f79
docs: fix minor typos (#10565) 2021-06-25 12:11:29 +03:00
Rasmus Schultz
1c80741886
doc: document type Fn = fn (string) string (type aliases) (#10471) 2021-06-22 12:39:57 +03:00
Andreas Heissenberger
9bfec97a6d
doc: section constants / modules / declare public constants (#10410) 2021-06-15 04:45:27 +03:00
Andreas Heissenberger
f922fc2a59
doc: add debugging JS backend source map flags (#10460) 2021-06-15 04:43:51 +03:00
Andreas Heissenberger
7983495c57
tools: improve v check-md by checking for broken TOC headline links (#10417) 2021-06-14 13:12:02 +03:00
Brandon Elam Barker
8082261278
docs: High order functions -> Higher-order functions (#10445)
Just using the more standard nomenclature for easier searching
2021-06-13 21:17:57 +03:00
Andreas Heissenberger
a71e382b95
docs: add a Module Publish section (#10407) 2021-06-12 15:12:47 +03:00
Andreas Heissenberger
f0b16fea27
docs: add Array Types section, improve examples (#10357) 2021-06-08 20:35:22 +03:00
नवुले पवन कुमार राव
3c56532ecb
docs: fix a typo in vscode.md (#10376) 2021-06-07 15:50:18 +03:00
Andreas Heissenberger
eef445508f
docs: document recompiling V itself with debug info, debugging tests, and a tip for vscode (#10358) 2021-06-07 11:09:07 +03:00
Valentin Syrovatskiy
04e77419cc
doc: document array.join method (#10360) 2021-06-06 12:32:49 +03:00
Delyan Angelov
117295e1f3
docs,ci: fix too long lines 2021-06-04 18:19:25 +03:00
Andreas Heissenberger
18bebcc3be
docs: add info on how to setup VSCode for debugging V code (#10329) 2021-06-04 17:55:22 +03:00
Delyan Angelov
bf623e191f
tests: ignore testdata folders while scanning for tests and .v files 2021-06-02 21:19:03 +03:00
Uwe Krüger
aa861d1cac
docs: describe array/slice behaviour (#10252) 2021-05-30 14:48:33 +03:00
Ruofan XU
4e55b9c08e
example: improve binary search tree example (#10226) 2021-05-27 20:13:02 +03:00
Khaled Hammouda
25645dbc44
docs: fix channel select example (#10213) 2021-05-27 12:47:13 +03:00
Ryan Roden-Corrent
b90bae79da
doc: document that test_ functions may propagate errors (#10162)
When testing a function that can return an error, writing a test like
this allows you to more easily test the non-error flow by just
propagating any errors and letting them fail the test.

I didn't realize this was a feature at first, so I was writing tests
like:

```
fn test_atoi() {
	assert strconv.atoi('1') or { panic("atoi failed") } == 1
	assert strconv.atoi('one') or { panic("atoi failed") } == 1
}
```
2021-05-21 14:18:13 +03:00
Enzo
906b207e58
checker: deprecate using V strings in C function calls (#10140) 2021-05-20 09:17:44 +03:00
Delyan Angelov
c16d4911c2
v.checker: deprecate $if linux_or_macos { in favor of $if linux || macos { 2021-05-08 21:00:21 +03:00
Mark
928ced3df8
docs: small English improvement (#10020)
I also suggest globally replacing "is casted" with "is cast" throughout since this is better English.
2021-05-06 16:43:41 +03:00
ka-weihe
605019ec27
doc: fix misleading 'maps' section (#9946) 2021-05-01 12:51:50 +03:00
Alexander Medvednikov
b3890e28f2
doc: document fixed size init syntax 2021-04-30 15:59:38 +03:00
Lukas Neubert
dee733aae4
fmt: reset const field align after multi line exprs (#9916) 2021-04-29 02:17:37 +03:00
Enzo
4f246222b0
v: replace --enable-globals with -enable-globals (#9898) 2021-04-28 07:44:28 +03:00
pancake
9a3869c521 v.ast: rename aarch64 to arm64 and aarch32 to arm32 2021-04-27 12:24:58 +03:00
pancake
6750ed254f x64: rename to native to not conflict with the x64 comptime variable 2021-04-27 12:24:58 +03:00
Uwe Krüger
787a63dab6
cgen: execute defer block *after* return expression is evaluated (#9893) 2021-04-27 01:42:16 +03:00
Louis Schmieder
7184629969
orm: add initial pg support (#9827) 2021-04-25 18:57:55 +03:00
Miccah
515e83dcbc
docs: correct one of the channel examples (#9865) 2021-04-25 18:20:12 +03:00
Delyan Angelov
d4f31412b7
v: deprecate @VROOT in favour of @VMODROOT (#9795) 2021-04-19 19:01:47 +03:00
Uwe Krüger
8ab0d42b5f
checker: check argument for chan.try_push/pop() (#9798) 2021-04-19 11:41:21 +03:00
Ahmed Muhammed
1a0bc5a952
docs: fix tenses (#9775) 2021-04-17 19:36:29 +03:00
Delyan Angelov
6b8585daea
docs: remove obsolete references to byteptr/charptr, use &byte/&char instead 2021-04-12 15:58:26 +03:00
Delyan Angelov
79284f0458
docs: fix some mixed indentation, found by v check-md . 2021-04-12 15:13:00 +03:00
Delyan Angelov
a4fb851f3d
docs: document dump(expr) 2021-04-12 12:08:25 +03:00
Louis Schmieder
64391efa4d
orm: add mysql support (#9630)
* add mysql to orm

* fix got to big packet error

* format sql.v

* format example

* custom sql types

* add mysql table cration

* add documentation

* format sql.v

* fix markdown

* start implementing select_expr for mysql

* remove orm.c

* format sql.v

* finish mysql expr

* remove c

* remove unessecary files

* change to c implementation

* remove c

* added str interpolation for idents

* fix string insert

* fix compilation problems

* fix gitly compilation

* fix typing mistake

* add link to orm docs
2021-04-10 17:38:27 +03:00
crthpl
903dd49212
v: add support for $if freestanding {, without using it (part 1) (#9656) 2021-04-09 23:24:25 +03:00
Uwe Krüger
84fa1ae444
boehm-gc: support a [keep_args_alive] tag for C functions (#9641) 2021-04-09 13:13:49 +03:00
koplenov
6b2f8196ac
doc: correct a typo (#9611) 2021-04-05 23:56:25 +03:00
koplenov
3617ce0539
docs: add a short description of available vpm commands (#9566) 2021-04-05 23:07:15 +03:00
Delyan Angelov
34aa67b1e8
ci: fix compilation and formatting of sqlite example in docs.md 2021-04-05 08:09:04 +03:00
Alberto González Palomo
762036963c
doc: Add a note on how to define type aliases. (#9466) 2021-03-26 19:50:29 +02:00
Larpon
35c60cf464
doc: reflect current intf32 behaviour (#9433) 2021-03-23 10:01:24 +01:00
Ben-Fields
c4e6ef424e
doc: add clarification about C declarations (#9390) 2021-03-21 07:43:12 +01:00
Miccah
a2eb686506
doc: document array .any() and .all() (#9386) 2021-03-20 17:27:27 +01:00
Delyan Angelov
8810af76df
all: support -gc boehm on systems with libgc-dev installed (#9382) 2021-03-20 14:16:36 +01:00
Delyan Angelov
a6ddd24f5c
v.embed_file: add .to_string() and .to_bytes() utility methods 2021-03-20 09:30:38 +02:00