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

all: implement reference receiver optimization for big structs (#9268)

This commit is contained in:
yuyi
2021-03-15 01:11:21 +08:00
committed by GitHub
parent 92e95f127a
commit 945769a4f6
6 changed files with 47 additions and 11 deletions

View File

@@ -28,7 +28,7 @@ pub mut:
env_is_custom bool // true, when the environment was customized with .set_environment
env []string // the environment with which the process was started (list of 'var=val')
use_stdio_ctl bool // when true, then you can use p.stdin_write(), p.stdout_slurp() and p.stderr_slurp()
stdio_fd [3]int // the file descriptors
stdio_fd [3]int // the file descriptors
}
// new_process - create a new process descriptor