fn fullContainerFieldComponents(tree: Ast, info: full.ContainerField.Components) full.ContainerField
fn fullContainerFieldComponents(tree: Ast, info: full.ContainerField.Components) full.ContainerField { var result: full.ContainerField = .{ .ast = info, .comptime_token = null, }; if (tree.isTokenPrecededByTags(info.main_token, &.{.keyword_comptime})) { // comptime type = init, // ^ ^ // comptime name: type = init, // ^ ^ result.comptime_token = info.main_token - 1; } return result; }