Skip to content

Commit

Permalink
Merge pull request Expensify#47789 from software-mansion-labs/289Adam…
Browse files Browse the repository at this point in the history
…289/45293-search-grammar-simplify-AST

grammar update simplifying an AST
  • Loading branch information
luacmartins authored Sep 6, 2024
2 parents 86efc61 + 15bb04e commit f6529fd
Show file tree
Hide file tree
Showing 5 changed files with 536 additions and 643 deletions.
2 changes: 1 addition & 1 deletion src/components/Search/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type SearchContext = {
type ASTNode = {
operator: ValueOf<typeof CONST.SEARCH.SYNTAX_OPERATORS>;
left: ValueOf<typeof CONST.SEARCH.SYNTAX_FILTER_KEYS> | ASTNode;
right: string | ASTNode;
right: string | ASTNode | string[];
};

type QueryFilter = {
Expand Down
Loading

0 comments on commit f6529fd

Please sign in to comment.