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

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

This commit is contained in:
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

View File

@ -4,8 +4,8 @@
module builtin module builtin
__global ( __global (
g_m2_buf byteptr g_m2_buf byteptr
g_m2_ptr byteptr g_m2_ptr byteptr
) )
// isnil returns true if an object is nil (only for C objects). // isnil returns true if an object is nil (only for C objects).
@ -38,7 +38,7 @@ __global (
total_m = i64(0) total_m = i64(0)
nr_mallocs = int(0) nr_mallocs = int(0)
// will be filled in cgen // will be filled in cgen
as_cast_type_indexes []VCastTypeIndexName as_cast_type_indexes []VCastTypeIndexName
) )
fn __as_cast(obj voidptr, obj_type int, expected_type int) voidptr { fn __as_cast(obj voidptr, obj_type int, expected_type int) voidptr {
@ -85,11 +85,13 @@ fn __print_assert_failure(i &VAssertMetaInfo) {
} }
} }
// MethodArgs holds type information for function and/or method arguments.
pub struct MethodArgs { pub struct MethodArgs {
pub: pub:
typ int typ int
} }
// FunctionData holds information about a parsed function.
pub struct FunctionData { pub struct FunctionData {
pub: pub:
name string name string
@ -99,6 +101,7 @@ pub:
typ int typ int
} }
// FieldData holds information about a field. Fields reside on structs.
pub struct FieldData { pub struct FieldData {
pub: pub:
name string name string