stage1: rename TypeInfo.FnArg to Fn.Param

This commit is contained in:
Veikka Tuominen
2022-02-22 13:22:40 +02:00
parent e5c30eef1f
commit f8154905e7
3 changed files with 18 additions and 17 deletions
+3 -3
View File
@@ -450,7 +450,7 @@ pub fn addCases(ctx: *TestContext) !void {
\\ .is_generic = true,
\\ .is_var_args = false,
\\ .return_type = u0,
\\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{},
\\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{},
\\ },
\\});
\\comptime { _ = Foo; }
@@ -466,7 +466,7 @@ pub fn addCases(ctx: *TestContext) !void {
\\ .is_generic = false,
\\ .is_var_args = true,
\\ .return_type = u0,
\\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{},
\\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{},
\\ },
\\});
\\comptime { _ = Foo; }
@@ -482,7 +482,7 @@ pub fn addCases(ctx: *TestContext) !void {
\\ .is_generic = false,
\\ .is_var_args = false,
\\ .return_type = null,
\\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{},
\\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{},
\\ },
\\});
\\comptime { _ = Foo; }