diff --git a/Sources/P4Runtime/Statements.swift b/Sources/P4Runtime/Statements.swift index 268c284..6063c33 100644 --- a/Sources/P4Runtime/Statements.swift +++ b/Sources/P4Runtime/Statements.swift @@ -133,9 +133,3 @@ extension ApplyStatement: EvaluatableStatement { return (ControlFlow.Next, execution) } } - -extension Instantiation: EvaluatableStatement { - public func evaluate(execution: ProgramExecution) -> (ControlFlow, ProgramExecution) { - return (ControlFlow.Next, execution) - } -}