pub fn isTokenPrecededByTags( tree: *const Ast, ti: TokenIndex, expected_token_tags: []const Token.Tag, ) bool
pub fn isTokenPrecededByTags( tree: *const Ast, ti: TokenIndex, expected_token_tags: []const Token.Tag, ) bool { return std.mem.endsWith( Token.Tag, tree.tokens.items(.tag)[0..ti], expected_token_tags, ); }