You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tools/modules/testing/output.v
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@ import time
4
4
5
5
pubenumMessageKind {
6
6
compile_begin // sent right before *each* _test.v file compilation, the resulting status is not known yet, but the _test.v file itself is
7
-
compile_end // sent right after *each* _test.v file compilation, the message contains the output of that compilation
8
-
cmd_begin // sent right before *each* _test.v file execution, the resulting status is not known yet, but the _test.v file itself is
9
-
cmd_end // sent right after *each* _test.v file execution, the message contains the output of that execution
7
+
compile_end // sent right after *each* _test.v file compilation, the message contains the output of that compilation
8
+
cmd_begin // sent right before *each* _test.v file execution, the resulting status is not known yet, but the _test.v file itself is
9
+
cmd_end // sent right after *each* _test.v file execution, the message contains the output of that execution
10
10
//
11
-
ok // success of a _test.v file
11
+
ok // success of a _test.v file
12
12
fail // failed _test.v file, one or more assertions failed
13
13
skip // the _test.v file was skipped for some reason
14
14
info // a generic information message, detailing the actions of the `v test` program (some tests could be repeated for example, and the details are sent with an .info status)
Copy file name to clipboardExpand all lines: vlib/builtin/array.v
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ pub:
24
24
pubenumArrayFlags {
25
25
noslices // when <<, `.noslices` will free the old data block immediately (you have to be sure, that there are *no slices* to that specific array). TODO: integrate with reference counting/compiler support for the static cases.
26
26
noshrink // when `.noslices` and `.noshrink` are *both set*, .delete(x) will NOT allocate new memory and free the old. It will just move the elements in place, and adjust .len.
27
-
nogrow // the array will never be allowed to grow past `.cap`. set `.nogrow` and `.noshrink` for a truly fixed heap array
28
-
nofree // `.data` will never be freed
27
+
nogrow // the array will never be allowed to grow past `.cap`. set `.nogrow` and `.noshrink` for a truly fixed heap array
0 commit comments