| Related articles |
|---|
| [8 earlier articles] |
| Re: A minimal LL(1) parser generator ? anton@mips.complang.tuwien.ac.at (2020-01-02) |
| Re: A minimal LL(1) parser generator ? gneuner2@comcast.net (George Neuner) (2020-01-02) |
| Re: A minimal LL(1) parser generator ? rockbrentwood@gmail.com (2020-01-04) |
| Re: A minimal LL(1) parser generator ? gaztoast@gmail.com (honey crisis) (2020-01-05) |
| Re: A minimal LL(1) parser generator ? carlglassberg@gmail.com (2020-01-05) |
| Re: A minimal LL(1) parser generator ? carlglassberg@gmail.com (2020-01-05) |
| Re: A minimal LL(1) parser generator ? carlglassberg@gmail.com (2020-01-05) |
| Re: A minimal LL(1) parser generator ? anton@mips.complang.tuwien.ac.at (2020-01-22) |
| Re: A minimal LL(1) parser generator ? anton@mips.complang.tuwien.ac.at (2020-01-22) |
| Re: A minimal LL(1) parser generator ? carlglassberg@gmail.com (2020-01-23) |
| Re: A minimal LL(1) parser generator ? anton@mips.complang.tuwien.ac.at (2020-01-25) |
| Re: A minimal LL(1) parser generator ? FredJScipione@alum.RPI.edu (Fred J. Scipione) (2020-01-25) |
| From: | carlglassberg@gmail.com |
| Newsgroups: | comp.compilers |
| Date: | Sun, 5 Jan 2020 14:44:36 -0800 (PST) |
| Organization: | Compilers Central |
| References: | 19-12-016 19-12-030 19-12-032 19-12-040 20-01-001 20-01-003 20-01-008 |
| Injection-Info: | gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="57928"; mail-complaints-to="abuse@iecc.com" |
| Keywords: | syntax |
| Posted-Date: | 06 Jan 2020 09:37:54 EST |
| In-Reply-To: | 20-01-008 |
That table didn't align properly, so lets present the same results this way:
-------------------------------------------------------------------------
Waite/Goos: x || y ===> Wirth EBNF: x { y x } ===> Gray: x y &&
-------------------------------------------------------------------------
Eiffel: { x y ...}* => Wirth EBNF: [ x { y x } ] => Gray: (( x y && )) ??
-------------------------------------------------------------------------
Eiffel: { x y ...}+ => Wirth EBNF: x { y x } => Gray: xy &&
-------------------------------------------------------------------------
Carl
----
Return to the
comp.compilers page.
Search the
comp.compilers archives again.