Skip to content

Commit ccbee0f

Browse files
committed
udpate for exnref
1 parent f57cdb8 commit ccbee0f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

document/core/appendix/embedding.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ Functions
311311

312312
a. If it succeeds with :ref:`values <syntax-val>` :math:`{\val'}^\ast` as results, then let :math:`\X{result}` be :math:`{\val'}^\ast`.
313313

314-
b. Else if the outcome is an exception with :ref:`tag <syntax-tagaddr>` :math:`\tagaddr` and payload :ref:`values <syntax-val>` :math:`{\val'}^\ast`, let :math:`\X{result}` be :math:`\ETHROW~\tagaddr~{\val'}^\ast`.
314+
b. Else if the outcome is an exception with a thrown :ref:`exception <exec-throw_ref>` :math:`\REFEXNADDR~\exnaddr` as the result, then let :math:`\X{result}` be :math:`\exnaddr`
315315

316316
c. Else it has trapped, hence let :math:`\X{result}` be :math:`\ERROR`.
317317

@@ -321,7 +321,7 @@ Functions
321321
~ \\
322322
\begin{array}{lclll}
323323
\F{func\_invoke}(S, a, v^\ast) &=& (S', {v'}^\ast) && (\iff \invoke(S, a, v^\ast) \stepto^\ast S'; F; {v'}^\ast) \\
324-
\F{func\_invoke}(S, a, v^\ast) &=& (S', \ETHROW~a'~{v'}^\ast) && (\iff \invoke(S, a, v^\ast) \stepto^\ast S'; F; \XT[(\THROWadm~a')]) \\
324+
\F{func\_invoke}(S, a, v^\ast) &=& (S', \ETHROW~a'~{v'}^\ast) && (\iff \invoke(S, a, v^\ast) \stepto^\ast S'; F; \XT[(\REFEXNADDR~\exnaddr)~\THROWREF] \\
325325
\F{func\_invoke}(S, a, v^\ast) &=& (S', \ERROR) && (\iff \invoke(S, a, v^\ast) \stepto^\ast S'; F; \TRAP) \\
326326
\end{array}
327327

document/core/exec/modules.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ New instances of :ref:`functions <syntax-funcinst>`, :ref:`tables <syntax-tablei
348348

349349
2. Let :math:`a` be the first free :ref:`exception address <syntax-exnaddr>` in :math:`S`.
350350

351-
3. Let :math:`\exninst` be the :ref:`exception instance <syntax-exninst>` :math:`\{ \EITAG~ta, \EIFIELDS~\val^\ast \}`.
351+
3. Let :math:`\exninst` be the :ref:`exception instance <syntax-exninst>` :math:`\{ \EITAG~ta, \EIFIELDS~\val^\ast \}`.
352352

353353
4. Append :math:`\exninst` to the |SEXNS| of :math:`S`.
354354

0 commit comments

Comments
 (0)