Make Formatter Happy

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-30 05:18:11 -04:00
parent 3b9c3a7076
commit 8299d76285
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -121,8 +121,10 @@ extension Parser: ParserExecution {
public func execute(execution: ProgramExecution) -> (InstantiatedParserState, ProgramExecution) {
var execution = execution.enter_scope()
execution = execution.declare(identifier: AsInstantiatedParserState(accept.state()).state, withValue: accept)
execution = execution.declare(identifier: AsInstantiatedParserState(reject.state()).state, withValue: reject)
execution = execution.declare(
identifier: AsInstantiatedParserState(accept.state()).state, withValue: accept)
execution = execution.declare(
identifier: AsInstantiatedParserState(reject.state()).state, withValue: reject)
// Add initial values to the global scope
if let initial = execution.initial_values() {