diff options
author | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-02-18 10:45:35 +0000 |
---|---|---|
committer | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-02-18 10:45:35 +0000 |
commit | ad5322977632dd2dcec7cb75082d5c128b4a8bd5 (patch) | |
tree | 82844d4d25a6017713ed0da0a54f4a16d55f8fe9 /src/Helium/Semantics | |
parent | 60b201d0c8752b84194753bb72eee777bf245fe3 (diff) |
Remove declare case of Procedure.
Diffstat (limited to 'src/Helium/Semantics')
-rw-r--r-- | src/Helium/Semantics/Denotational/Core.agda | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Helium/Semantics/Denotational/Core.agda b/src/Helium/Semantics/Denotational/Core.agda index d4060f5..6ec0b24 100644 --- a/src/Helium/Semantics/Denotational/Core.agda +++ b/src/Helium/Semantics/Denotational/Core.agda @@ -217,7 +217,6 @@ module Expression ⟦_⟧ᶠ {Γ = Γ} (declare e f) σ γ = ⟦ f ⟧ᶠ σ (tupCons Γ (⟦ e ⟧ᵉ σ γ) γ) ⟦ s ∙end ⟧ᵖ σ γ = P.proj₁ (⟦ s ⟧ˢ σ γ) - ⟦_⟧ᵖ {Γ = Γ} (declare e p) σ γ = ⟦ p ⟧ᵖ σ (tupCons Γ (⟦ e ⟧ᵉ σ γ) γ) update (state i {i<o}) v σ γ = updateAt Σ (#_ i {m<n = i<o}) v σ , γ update {Γ = Γ} (var i {i<n}) v σ γ = σ , updateAt Γ (#_ i {m<n = i<n}) v γ |