pub fn findFirstDocComment(ast: *const Ast, token: Ast.TokenIndex) Ast.OptionalTokenIndex
pub fn findFirstDocComment(ast: *const Ast, token: Ast.TokenIndex) Ast.OptionalTokenIndex { var it = token; while (it > 0) { it -= 1; if (ast.tokenTag(it) != .doc_comment) { return .fromToken(it + 1); } } return .none; }