Go to the first, previous, next, last section, table of contents.


4.12 Informal Comments

Informal comments, are not really comments, but do resemble C-style comments. They look like (% ... %), where the body of the comment can contain any characters except the string %). These tokens are recognized only within a LSL (and Larch/C++) predicate or term (see section 6.1 Predicates). See section 6.1.4 Informal Descriptions for how these are used.

informal-comment ::= (% [ informal-comment-body ] %)
informal-comment-body ::= non-percent-right-paren [ non-percent-right-paren ] ...
non-percent-right-paren ::= non-percent
          | percents-non-right-paren 
non-percent ::= any character except %
percents-non-right-paren ::= % [ % ] ... non-right-paren
non-right-paren ::= any character except )


Go to the first, previous, next, last section, table of contents.