⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ru.grammar.svn-base

📁 这是一个DFA简化和生成LL(1)分析表的程序,自动生成表格及图形
💻 SVN-BASE
字号:
<autotree>grammar    : component_list eofile           | <error>component_list: component(s)eofile     : /^\Z/component  : rule           | comment           | directive           | <error>rule       : identifier ":" <commit> production_list           | <error>production_list: production(s /\|/)production : item(s)item       : simpleitem           | directive           | comment           | <error>simpleitem : repetition               # match repeated subrules           | subrule                  # match another rule           | terminal                 # match the next input           | <error>subrule    : /[A-Za-z]\w*\b(?!\s*:)/    # the name of the rulerepetition : subrule howoften           | <error>howoften   : '(?)'                                     # 0 or 1 times           | '(s' <commit> regex(?) ')'             # 1 or more times           | '(s?' <commit> regex(?) ')'            # 0 or more timesterminal   : /\/(\\\/|[^\/])*\//               # interpolated pattern           | /"([\\]"|[^"])*"/                 # interpolated literal           | /'([\\]'|[^'])*'/                 # uninterpolated literaldirective  : '<commit>'                       # commit to production           | '<uncommit>'                     # cancel commitment           | '<error>'                        # report an error           | '<autotree>'comment    : /#[^\n]*/                        # same as Perlidentifier : /[A-Za-z]\w*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -