Make Formatter Happy
Continuous Integration / Grammar Tests (push) Successful in 36s
Continuous Integration / Library Format Tests (push) Successful in 1m19s
Continuous Integration / Library Tests (push) Successful in 3m51s

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-06-12 06:34:57 -04:00
parent fe88e447a9
commit e17533dfc8
6 changed files with 37 additions and 24 deletions
+2 -1
View File
@@ -133,7 +133,8 @@ extension AST.Expression: Compilable {
let expression_parsers: [CompilableExpression.Type] = [
P4BooleanValue.self, P4StringValue.self, P4IntValue.self, AST.Identifier.self,
AST.BinaryOperatorExpression.self, AST.ArrayAccessExpression.self, AST.FieldAccessExpression.self,
AST.BinaryOperatorExpression.self, AST.ArrayAccessExpression.self,
AST.FieldAccessExpression.self,
AST.FunctionCall.self,
]