Refactor Parsers and Parser States

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-10 03:56:18 -04:00
parent 7c7416fa64
commit 3188b52965
12 changed files with 223 additions and 381 deletions
+4 -2
View File
@@ -24,7 +24,8 @@ extension KeysetExpression: EvaluatableExpression {
}
public func type() -> any Common.P4Type {
return P4ParserState.create()
// TODO
return reject
}
}
@@ -45,8 +46,9 @@ extension SelectExpression: EvaluatableExpression {
}
}
// TODO
public func type() -> any Common.P4Type {
return P4ParserState.create()
return reject
}
}