Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何定义一个可以有多个起始规则的灵气语法?我正在研究一种 XML 语法,我希望有 4 个可能的起始规则。
因此,如果我有一个名为的语法xml_grammar并且 base_type 是(A, "A"). 我还想要一些其他的起始规则。
xml_grammar
(A, "A")
所有形式语法都有一个起始符号。如果您正在考虑多个起始符号(例如 A、B、C 和 D),您可以使用如下规则将它们转换为单个人工起始符号 S:
S = A | B | C | D