diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-04-01 07:24:00 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-04-01 07:28:02 -0400 |
commit | 9c911d74fa351985016d89e8b61b2869111bde71 (patch) | |
tree | 3b7bf05610e26b9a1393ffccfd53def0cdf65284 /src/expr.h | |
parent | a662fda2642e17478bc8e78adb4c6642a8505cdb (diff) | |
download | bfs-9c911d74fa351985016d89e8b61b2869111bde71.tar.xz |
ctx: Track the token kind of each argument
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,9 @@ * Argument/token/expression kinds. */ enum bfs_kind { + /** A regular argument. */ + BFS_ARG, + /** A flag (-H, -L, etc.). */ BFS_FLAG, |