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

gen: add argument names to compile-time method struct (#9174)

This commit is contained in:
Miccah
2021-03-07 07:28:43 -06:00
committed by GitHub
parent 1b47e2953d
commit a1e0f2bc46
3 changed files with 17 additions and 2 deletions

View File

@ -88,7 +88,8 @@ fn __print_assert_failure(i &VAssertMetaInfo) {
// MethodArgs holds type information for function and/or method arguments.
pub struct MethodArgs {
pub:
typ int
typ int
name string
}
// FunctionData holds information about a parsed function.