Skip to content

Commit

Permalink
Fix typing rule of administrative delegate.
Browse files Browse the repository at this point in the history
This is not the suggestion given in that last review of WebAssembly#143:
https://github.com/WebAssembly/exception-handling/pull/143/files#r759907998

but a potential fix of the issue raised there.
  • Loading branch information
ioannad committed May 11, 2022
1 parent 15dd632 commit 46d3f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proposals/exception-handling/Exceptions-formal-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ C ⊢ try bt instr1* (catch x instr2*)* (catch_all instr3*)? end : [t1*]→[t2*]
C ⊢ bt : [t1*]→[t2*]
C, labels [t2*] ⊢ instr* : [t1*]→[t2*]
C.labels[l] = [t*]
|C.labels| ≥ l
-------------------------------------------
C ⊢ try bt instr* delegate l : [t1*]→[t2*]
```
Expand Down Expand Up @@ -209,7 +209,7 @@ S;C, labels [t2*] ⊢ instr1* : []→[t2*]
S;C, labels [t2*] ⊢ catch{a? instr2*}* instr1* end : []→[t2*]
S;C, labels [t*] ⊢ instr* : []→[t*]
C.labels[l] = [t0*]
|C.labels| ≥ l
------------------------------------------------------
S;C, labels [t*] ⊢ delegate{l} instr* end : []→[t*]
Expand Down

0 comments on commit 46d3f94

Please sign in to comment.