-
这个语法分析器用到的是自顶向下的递归调用的方法,根据Cminus语言的文法规则 的BNF范式编写递归调用的代码,parse方法是程序的入口,它调用的stmt_s...
这个语法分析器用到的是自顶向下的递归调用的方法,根据Cminus语言的文法规则 的BNF范式编写递归调用的代码,parse方法是程序的入口,它调用的stmt_sequence完成整个语法分析工作,stmt_sequence背后是12个互相调用的方法,它本身也在语法分析的过程中被调用到。
每个方法在最后会返回一个构造好的节点DefaultMutableTreeNode节点t给调用它的方法,然后调用它的方法用这个返回的节点继续构造,最后语法分析完成后会返回一棵完全构造好了的树节点,然后将这个树节点作为根节点生成一个树控件JTree显示到窗体程序上
-CMM parser
- 2023-07-09 15:45:03下载
- 积分:1
-
tiny 编译器
tiny 编译器-tiny compiler
- 2022-06-18 04:13:54下载
- 积分:1
-
是我刚完成的,大家请多指教
是我刚完成的,大家请多指教- Was I just completes, everybody please advised
- 2022-03-19 09:46:44下载
- 积分:1
-
这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将...
这里以开始定义的PASCAL语言子集的源程序作为词法分析程序的输入数据。在词法分析中,自文 件头开始扫描源程序字符,一旦发现符合“单词”定义的源程序字符串时,将它翻译成固定长度的单 词内部表示,并查填适当的信息表。经过词法分析后,源程序字符串(源程序的外部表示)被翻译成 具有等长信息的单词串(源程序的内部表示),并产生两个表格:常数表和标识符表,它们分别包含 了源程序中的所有常数和所有标识符。- Here starts the PASCAL language subset source program which
defines to take the lexical analyaer the data-in. In the lexical
analysis, starts from the article article to scan the source program
character, once discovered when conforms to "the word" the definition
source program character string, translates it the fixed length the
word interior to indicate, and looks up fills in the suitable
information table. After the lexical analysis, the source program
character string (source program exterior expression) is translated
has and so on the long information the word string (source program
internal expression), and produces two forms: The chart and the
identifier table, they have separately contained in source program all
constants and all identifiers.
- 2022-03-30 16:56:06下载
- 积分:1
-
flex 词法分析器 识别token单元
flex 词法分析器 识别token单元-syntax analysis
- 2023-01-24 13:30:04下载
- 积分:1
-
语法分析 语法分析
语法分析 语法分析- The grammar analysis grammar analysis grammar analyzes
- 2022-06-01 16:03:08下载
- 积分:1
-
利用vc制作的模拟编译器的扫描程序,实现在输入字符串扫描分解为编译器能识别的符号。...
利用vc制作的模拟编译器的扫描程序,实现在输入字符串扫描分解为编译器能识别的符号。- Using the vc manufacture simulation compiler scanning
procedure, realizes in the input character string scanning decomposes
the mark which can distinguish for the compiler.
- 2023-04-24 06:45:03下载
- 积分:1
-
一个程序,用于判定给定的文法是否为算符优先文法。 实现了:1.文法的机内表示;2. FIRSTVT集和LASTVT集的计算; 3. 算符优先关系矩阵的构造。...
一个程序,用于判定给定的文法是否为算符优先文法。 实现了:1.文法的机内表示;2. FIRSTVT集和LASTVT集的计算; 3. 算符优先关系矩阵的构造。-a procedure for the determination of grammar to whether the operator priority to grammar. Realized : 1. Grammar said the machines; 2. LASTVT FIRSTVT sets and set computing; 3. Operator precedence relations of the matrix structure.
- 2022-02-18 16:37:46下载
- 积分:1
-
用SLR(1)的类C语言的编译器实现的语义分析…
用SLR(1)方法实现的类C语言的编译器的语义分析程序。-with SLR (1) Realization of the Class C language compiler is the semantic analysis procedures.
- 2023-05-13 03:15:02下载
- 积分:1
-
使用lex词法分析生成工具。一个字符串的输入…
利用LEX生成工具构造PASCAL词法分析器。输入一个字符串或是数,分析器将判别是否为PASCAL标准标识符、保留字、整数或实数,并同时把当前的输入再次打印出来。-use LEX generation tool is PASCAL lexical analyzer. The importation of a string or number analyzer to determine whether it will PASCAL standard identifier and reserved word, integer or real, and while the current importation of printed again.
- 2023-03-11 12:30:04下载
- 积分:1