builtin: document remaining pub structs in builtin.v (#8576)

pull/8593/head^2
Larpon 2021-02-05 21:02:29 +01:00 committed by GitHub
parent 1101533dea
commit 57258c2988
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -85,11 +85,13 @@ fn __print_assert_failure(i &VAssertMetaInfo) {
}
}
// MethodArgs holds type information for function and/or method arguments.
pub struct MethodArgs {
pub:
typ int
}
// FunctionData holds information about a parsed function.
pub struct FunctionData {
pub:
name string
@ -99,6 +101,7 @@ pub:
typ int
}
// FieldData holds information about a field. Fields reside on structs.
pub struct FieldData {
pub:
name string