@@ -1808,16 +1808,15 @@ L1:
18081808---
18091809)
18101810
1811- $(P The second form, $(CODE goto default;), transfers to the innermost $(GLINK
1811+ $(P The second form, $(GRAMMAR_INLINE ` goto default` ;), transfers to the innermost $(GLINK
18121812DefaultStatement) of an enclosing $(GLINK SwitchStatement).)
18131813
1814- $(P The third form, $(CODE goto case;), transfers to the
1814+ $(P The third form, $(GRAMMAR_INLINE ` goto case` ;), transfers to the
18151815 next $(GLINK CaseStatement) of the innermost enclosing
18161816 $(GLINK SwitchStatement).)
18171817
1818- $(P The fourth form, $(CODE goto case) *Expression*$(D ;), transfers to the
1819- $(GLINK CaseStatement) of the innermost enclosing
1820- $(GLINK SwitchStatement)
1818+ $(P The fourth form, $(GRAMMAR_INLINE `goto case` *Expression*;), transfers to the
1819+ $(GLINK CaseStatement) of the innermost enclosing $(GLINK SwitchStatement)
18211820 with a matching *Expression*.)
18221821
18231822$(SPEC_RUNNABLE_EXAMPLE_RUN
@@ -1842,15 +1841,15 @@ switch (x)
18421841---
18431842)
18441843
1845- $(P Any intervening finally clauses are executed, along with releasing any
1844+ $(P Any intervening ` finally` clauses are executed, along with releasing any
18461845intervening synchronization mutexes.)
18471846
18481847 $(P It is illegal for a $(I GotoStatement) to be used to skip
18491848 initializations within its containing scope.)
18501849
18511850 $(BEST_PRACTICE Prefer using a higher-level control-flow construct
18521851 or a labelled $(GLINK BreakStatement)/$(GLINK ContinueStatement)
1853- rather than the $(GRAMMAR_INLINE * `goto` Identifier;* ) form.)
1852+ rather than the $(GRAMMAR_INLINE `goto` * Identifier*; ) form.)
18541853
18551854
18561855$(H2 $(LEGACY_LNAME2 WithStatement, with-statement, With Statement))
0 commit comments