当前位置:   article > 正文

javacc 教程6 jjtree

jjtree

我们知道JavaCC是一种编译器开发工具,主要用于解析输入文本并生成与其语法结构相对应的语法树。JavaCC生成的语法树是一种较低级别的抽象,需要开发人员自行定义和实现对其的处理和操作。而JJTree是JavaCC的一个扩展,提供了一种更高级别的抽象。相对于JavaCC,JJTree生成的语法树节点包含属性和方法,可以更方便地构建和处理语法树,尤其是对于复杂的语法结构和语法树节点操作需求。

我们先看下面的示例:

  1. PARSER_BEGIN(Eg1)
  2. package com.github.gambo.javacc.jjtree.eg1;
  3. /** An Arithmetic Grammar. */
  4. public class Eg1 {
  5. /** Main entry point. */
  6. public static void main(String args[]) {
  7. System.out.println("Reading from standard input...");
  8. Eg1 t = new Eg1(System.in);
  9. try {
  10. SimpleNode n = t.Start();
  11. n.dump("");
  12. System.out.println("Thank you.");
  13. } catch (Exception e) {
  14. System.out.println("Oops.");
  15. System.out.println(e.getMessage());
  16. e.printStackTrace();
  17. }
  18. }
  19. }
  20. PARSER_END(Eg1)
  21. SKIP :
  22. {
  23. " "
  24. | "\t"
  25. | "\n"
  26. | "\r"
  27. | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")>
  28. | <"/*" (~["*"])* "*" (~["/"] (~["*"])* "*")* "/">
  29. }
  30. TOKEN : /* LITERALS */
  31. {
  32. < INTEGER_LITERAL:
  33. <DECIMAL_LITERAL> (["l","L"])?
  34. | <HEX_LITERAL> (["l","L"])?
  35. | <OCTAL_LITERAL> (["l","L"])?
  36. >
  37. |
  38. < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
  39. |
  40. < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
  41. |
  42. < #OCTAL_LITERAL: "0" (["0"-"7"])* >
  43. }
  44. TOKEN : /* IDENTIFIERS */
  45. {
  46. < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >
  47. |
  48. < #LETTER: ["_","a"-"z","A"-"Z"] >
  49. |
  50. < #DIGIT: ["0"-"9"] >
  51. }
  52. /** Main production. */
  53. SimpleNode Start() : {}
  54. {
  55. Expression() ";"
  56. { return jjtThis; }
  57. }
  58. /** An Expression. */
  59. void Expression() : {}
  60. {
  61. AdditiveExpression()
  62. }
  63. /** An Additive Expression. */
  64. void AdditiveExpression() : {}
  65. {
  66. MultiplicativeExpression() ( ( "+" | "-" ) MultiplicativeExpression() )*
  67. }
  68. /** A Multiplicative Expression. */
  69. void MultiplicativeExpression() : {}
  70. {
  71. UnaryExpression() ( ( "*" | "/" | "%" ) UnaryExpression() )*
  72. }
  73. /** A Unary Expression. */
  74. void UnaryExpression() : {}
  75. {
  76. "(" Expression() ")" | Identifier() | Integer()
  77. }
  78. /** An Identifier. */
  79. void Identifier() : {}
  80. {
  81. <IDENTIFIER>
  82. }
  83. /** An Integer. */
  84. void Integer() : {}
  85. {
  86. <INTEGER_LITERAL>
  87. }

这是一个解析算数表达式的语法文件,相比之前的javacc语法文件,增加了通过SimpleNode 的dump方法发打印语法树的层次结构。

我们可以看一下ant的构建配置:|

  1. <target name="eg1" description="Builds example 'eg1'">
  2. <delete dir="${build.home}/jjtree"/>
  3. <mkdir dir="${build.home}/jjtree"/>
  4. <copy file="eg1.jjt" todir="${build.home}/jjtree"/>
  5. <jjtree target="eg1.jjt" outputdirectory="${build.home}/jjtree" javacchome="${javacc.home}"/>
  6. <javacc target="${build.home}/jjtree/eg1.jj" outputdirectory="${build.home}/jjtree" javacchome="${javacc.home}"/>
  7. <javac deprecation="false" srcdir="${build.home}/jjtree" destdir="${build.class.home}" includeantruntime='false'/>
  8. <echo message="*******"/>
  9. <echo message="******* Now cd into the eg1 directory and run 'java Eg1' ******"/>
  10. <echo message="*******"/>
  11. </target>

可以看到先通过jjtree命令生成xxx.jj文件,再通过javacc命令生成构建java代码。最终生成的文件如下:

运行Eg1的main方法然后输入(a + b) * (c + 1); 注意一定要输入分号,运行结果:

  1. Reading from standard input...
  2. (a + b) * (c + 1);
  3. Start
  4. Expression
  5. AdditiveExpression
  6. MultiplicativeExpression
  7. UnaryExpression
  8. Expression
  9. AdditiveExpression
  10. MultiplicativeExpression
  11. UnaryExpression
  12. Identifier
  13. MultiplicativeExpression
  14. UnaryExpression
  15. Identifier
  16. UnaryExpression
  17. Expression
  18. AdditiveExpression
  19. MultiplicativeExpression
  20. UnaryExpression
  21. Identifier
  22. MultiplicativeExpression
  23. UnaryExpression
  24. Integer
  25. Thank you.

可以看到其按照产生式的调用顺序生成了层级结构。
 

Node

默认情况下,JJTree生成代码来为每个非终结符构造解析树节点。我们也可以修改此行为,使某些非终结符不生成节点, 或者为产生式扩展的一部分节点。

JJTree 定义了一个所有解析树节点必须实现的 Java 接口 `Node`。该接口提供了一些方法:为当前节点添加父节点, 和添加子节点,并检索他们。在我们生成的代码里又存在一个名为Node的interface,其结构如下:

  1. public interface Node {
  2. // 此方法在节点成为当前节点后调用。它表明当前节点现在可以添加子节点。
  3. public void jjtOpen();
  4. // 子节点添加完毕后,将调用此方法。
  5. public void jjtClose();
  6. //这对方法分别用于设置节点的父节点和获取节点的父节点
  7. public void jjtSetParent(Node n);
  8. public Node jjtGetParent();
  9. //方法将指定的节点添加到当前节点的子节点列表中
  10. public void jjtAddChild(Node n, int i);
  11. //获取指定索引的子节点
  12. public Node jjtGetChild(int i);
  13. //获取子节点的数量
  14. public int jjtGetNumChildren();
  15. public int getId();
  16. }

我们可以实现一个SimpleNode.class 实现了Node接口,我们可以自己实现它 如果它不存在,则由JJTree自动生成。 我们可以将这个类用作节点实现的模板或父类,也可以对他进行修改。 SimpleNode 还提供了一个基本机制,用于递归的转储节点及其子节点。我们可以观察一下生成的SimpleNode的dump方法。

  1. public void dump(String prefix) {
  2. System.out.println(toString(prefix));
  3. if (children != null) {
  4. for (int i = 0; i < children.length; ++i) {
  5. SimpleNode n = (SimpleNode)children[i];
  6. if (n != null) {
  7. n.dump(prefix + " ");
  8. }
  9. }
  10. }
  11. }

这也是我们在main函数中执行性dump方法后会打印层级结构的原因。

定义节点的名称和条件

我们观察一下上面的运行结果,一个简单的算术表达式生成了20多个节点,实际上很多中间的过度节点是不必要生成的,比如UnaryExpression,express等,我们希望只生成和算术表达式直接相关的节点。并且节点名称都以产生式名称命名,无法直观的分辨出哪个是加号节点哪个是乘号节点,总的来说可读性不高。

我们把上面的例子改进一下:

  1. options {
  2. MULTI=true;
  3. KEEP_LINE_COLUMN = false;
  4. }
  5. PARSER_BEGIN(Eg2)
  6. package com.github.gambo.javacc.jjtree.eg2;
  7. /** An Arithmetic Grammar. */
  8. public class Eg2 {
  9. /** Main entry point. */
  10. public static void main(String args[]) {
  11. System.out.println("Reading from standard input...");
  12. Eg2 t = new Eg2(System.in);
  13. try {
  14. ASTStart n = t.Start();
  15. n.dump("");
  16. System.out.println("Thank you.");
  17. } catch (Exception e) {
  18. System.out.println("Oops.");
  19. System.out.println(e.getMessage());
  20. e.printStackTrace();
  21. }
  22. }
  23. }
  24. PARSER_END(Eg2)
  25. SKIP :
  26. {
  27. " "
  28. | "\t"
  29. | "\n"
  30. | "\r"
  31. | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")>
  32. | <"/*" (~["*"])* "*" (~["/"] (~["*"])* "*")* "/">
  33. }
  34. TOKEN : /* LITERALS */
  35. {
  36. < INTEGER_LITERAL:
  37. <DECIMAL_LITERAL> (["l","L"])?
  38. | <HEX_LITERAL> (["l","L"])?
  39. | <OCTAL_LITERAL> (["l","L"])?
  40. >
  41. |
  42. < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
  43. |
  44. < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
  45. |
  46. < #OCTAL_LITERAL: "0" (["0"-"7"])* >
  47. }
  48. TOKEN : /* IDENTIFIERS */
  49. {
  50. < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >
  51. |
  52. < #LETTER: ["_","a"-"z","A"-"Z"] >
  53. |
  54. < #DIGIT: ["0"-"9"] >
  55. }
  56. /** Main production. */
  57. ASTStart Start() : {}
  58. {
  59. Expression() ";"
  60. { return jjtThis; }
  61. }
  62. /** An Expression. */
  63. void Expression() #void : {}
  64. {
  65. AdditiveExpression()
  66. }
  67. /** An Additive Expression. */
  68. void AdditiveExpression() #void : {}
  69. {
  70. (
  71. MultiplicativeExpression() ( ( "+" | "-" ) MultiplicativeExpression() )*
  72. ) #Add(>1)
  73. }
  74. /** A Multiplicative Expression. */
  75. void MultiplicativeExpression() #void : {}
  76. {
  77. (
  78. UnaryExpression() ( ( "*" | "/" | "%" ) UnaryExpression() )*
  79. ) #Mult(>1)
  80. }
  81. /** A Unary Expression. */
  82. void UnaryExpression() #void : {}
  83. {
  84. "(" Expression() ")" | MyID() | Integer()
  85. }
  86. /** An Identifier. */
  87. void MyID() :
  88. {
  89. Token t;
  90. }
  91. {
  92. t=<IDENTIFIER>
  93. {
  94. jjtThis.setName(t.image);
  95. }
  96. }
  97. /** An Integer. */
  98. void Integer() : {}
  99. {
  100. <INTEGER_LITERAL>
  101. }

输入同样的表达式(a + b) * (c + 1);运行结果如下:

  1. Reading from standard input...
  2. (a + b) * (c + 1);
  3. Start
  4. Mult
  5. Add
  6. Identifier: a
  7. Identifier: b
  8. Add
  9. Identifier: c
  10. Integer
  11. Thank you.

相比上一个jjtree语法文件这里的改动并不大,我们逐一了解一下:

  1. void Expression() #void : {}
  2. {
  3. AdditiveExpression()
  4. }

这里比之前多了个#void,如果想要禁止当前的产生式生成一个节点,可以使用这个语法。

  1. void AdditiveExpression() #void : {}
  2. {
  3.   (
  4.     MultiplicativeExpression() ( ( "+" | "-" ) MultiplicativeExpression() )*
  5.   ) #Add(>1)
  6. }

这个产生式表示若干个乘法表达式相加减,这里的#Add充当后缀操作符,其作用域是紧接在前面的扩展单元(这里代表前面小括号里面的表达式)。

#Add(>1)则是条件节点的写法,当且仅当条件求值为' true '时,构造当前节点及其子结点. 如果计算结果为' false ',则不构造当前节点及其子节点。如果#Add后面没有任何条件则代表#Add(true),而#Add(>1)则是#Add(jjtree.arity() > 1)的简写,jjtree.arity()则代表和获取当前节点范围内压入节点堆栈的节点数,可以简单的理解为Add节点有没有子节点生成。jjtree的class结构我们会在后面补充。
 

  1. void MyID() :
  2. {
  3. Token t;
  4. }
  5. {
  6. t=<IDENTIFIER>
  7. {
  8. jjtThis.setName(t.image);
  9. }
  10. }

这里是自定义节点的一个应用,用于将解析到的token字符作为节点名称打印出来,jjtThis.setName(t.image);代表设置当前节点的name,这里可以看下如何对SimpleNode进行拓展。

  1. package com.github.gambo.javacc.jjtree;
  2. /**
  3. * An ID.
  4. */
  5. public class ASTMyID extends SimpleNode {
  6. private String name;
  7. /**
  8. * Constructor.
  9. * @param id the id
  10. */
  11. public ASTMyID(int id) {
  12. super(id);
  13. }
  14. /**
  15. * Set the name.
  16. * @param n the name
  17. */
  18. public void setName(String n) {
  19. name = n;
  20. }
  21. /**
  22. * {@inheritDoc}
  23. * @see org.javacc.examples.jjtree.eg2.SimpleNode#toString()
  24. */
  25. public String toString() {
  26. return "Identifier: " + name;
  27. }
  28. }

对比上面节点树的打印,用法一目了然!注意自定义节点的class名称以AST作为前缀,以及我们在语法文件中对此节点的引用名称ASTxxx,xxx作为节点引用。 

上面的例子我们为了避免节点的产生在好几个产生式的后面加上了#void,实际上这样的动作是可以作为默认行为进行配置的,我们可以在文件头的options区域增加配置

NODE_DEFAULT_VOID=true

这样所有的产生式均不会产生节点,如果需要某些产生式生成节点,则在后面加上#xxx,具体代码如下:

  1. options {
  2. MULTI=true;
  3. NODE_DEFAULT_VOID=true;
  4. }
  5. PARSER_BEGIN(Eg)
  6. package com.github.gambo.javacc.jjtree;
  7. /** An Arithmetic Grammar. */
  8. public class Eg {
  9. /** Main entry point. */
  10. public static void main(String args[]) {
  11. System.out.println("Reading from standard input...");
  12. Eg t = new Eg(System.in);
  13. try {
  14. ASTStart n = t.Start();
  15. n.dump("");
  16. System.out.println("Thank you.");
  17. } catch (Exception e) {
  18. System.out.println("Oops.");
  19. System.out.println(e.getMessage());
  20. e.printStackTrace();
  21. }
  22. }
  23. }
  24. PARSER_END(Eg)
  25. SKIP :
  26. {
  27. " "
  28. | "\t"
  29. | "\n"
  30. | "\r"
  31. | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")>
  32. | <"/*" (~["*"])* "*" (~["/"] (~["*"])* "*")* "/">
  33. }
  34. TOKEN : /* LITERALS */
  35. {
  36. < INTEGER_LITERAL:
  37. <DECIMAL_LITERAL> (["l","L"])?
  38. | <HEX_LITERAL> (["l","L"])?
  39. | <OCTAL_LITERAL> (["l","L"])?
  40. >
  41. |
  42. < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
  43. |
  44. < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
  45. |
  46. < #OCTAL_LITERAL: "0" (["0"-"7"])* >
  47. }
  48. TOKEN : /* IDENTIFIERS */
  49. {
  50. < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >
  51. |
  52. < #LETTER: ["_","a"-"z","A"-"Z"] >
  53. |
  54. < #DIGIT: ["0"-"9"] >
  55. }
  56. /** Main production. */
  57. ASTStart Start() #Start : {}
  58. {
  59. Expression() ";"
  60. { return jjtThis; }
  61. }
  62. /** An Expression. */
  63. void Expression() : {}
  64. {
  65. AdditiveExpression()
  66. }
  67. /** An Additive Expression. */
  68. void AdditiveExpression() : {}
  69. {
  70. (
  71. MultiplicativeExpression() ( ( "+" | "-" ) MultiplicativeExpression() )*
  72. ) #Add(>1)
  73. }
  74. /** A Multiplicative Expression. */
  75. void MultiplicativeExpression() : {}
  76. {
  77. (
  78. UnaryExpression() ( ( "*" | "/" | "%" ) UnaryExpression() )*
  79. ) #Mult(>1)
  80. }
  81. /** A Unary Expression. */
  82. void UnaryExpression() : {}
  83. {
  84. "(" Expression() ")" | Identifier() | Integer()
  85. }
  86. /** An Identifier. */
  87. void Identifier() #MyID :
  88. {
  89. Token t;
  90. }
  91. {
  92. t=<IDENTIFIER>
  93. {
  94. jjtThis.setName(t.image);
  95. }
  96. }
  97. /** An Integer. */
  98. void Integer() #Integer : {}
  99. {
  100. <INTEGER_LITERAL>
  101. }

Visitor 

前面的示例中我们通过simpleNode中的dump方法来打印节点树,通过修改相关节点的toString方法来输出相应节点的名称,然而这并不是一个优雅的做法。一个好的程序设计应当是职责单一,操作分离的。对于本章的例子,不管是什么样的节点,其节点类应当更加专注于自身的业务逻辑,对于节点树的访问,应当从节点本身分离出去,由外部来进行定义。jjtree为我们提供的Visitor 则可以满足这一要求。

Visitor 模式允许开发者定义一个访问者对象,该对象可以遍历语法树中的节点并在不修改原有节点代码的情况下添加新的操作或功能。

我们对上面的代码做一些修改:

  1. options {
  2. MULTI=true;
  3. VISITOR=true;
  4. NODE_DEFAULT_VOID=true;
  5. }
  6. PARSER_BEGIN(Eg2)
  7. package com.github.gambo.javacc.jjtree;
  8. /** An Arithmetic Grammar. */
  9. public class Eg2 {
  10. /** Main entry point. */
  11. public static void main(String args[]) {
  12. System.out.println("Reading from standard input...");
  13. Eg2 t = new Eg2(System.in);
  14. try {
  15. ASTStart n = t.Start();
  16. Eg2Visitor v = new Eg2DumpVisitor();
  17. n.jjtAccept(v, null);
  18. System.out.println("Thank you.");
  19. } catch (Exception e) {
  20. System.out.println("Oops.");
  21. System.out.println(e.getMessage());
  22. e.printStackTrace();
  23. }
  24. }
  25. }
  26. PARSER_END(Eg2)
  27. SKIP :
  28. {
  29. " "
  30. | "\t"
  31. | "\n"
  32. | "\r"
  33. | <"//" (~["\n","\r"])* ("\n"|"\r"|"\r\n")>
  34. | <"/*" (~["*"])* "*" (~["/"] (~["*"])* "*")* "/">
  35. }
  36. TOKEN : /* LITERALS */
  37. {
  38. < INTEGER_LITERAL:
  39. <DECIMAL_LITERAL> (["l","L"])?
  40. | <HEX_LITERAL> (["l","L"])?
  41. | <OCTAL_LITERAL> (["l","L"])?
  42. >
  43. |
  44. < #DECIMAL_LITERAL: ["1"-"9"] (["0"-"9"])* >
  45. |
  46. < #HEX_LITERAL: "0" ["x","X"] (["0"-"9","a"-"f","A"-"F"])+ >
  47. |
  48. < #OCTAL_LITERAL: "0" (["0"-"7"])* >
  49. }
  50. TOKEN : /* IDENTIFIERS */
  51. {
  52. < IDENTIFIER: <LETTER> (<LETTER>|<DIGIT>)* >
  53. |
  54. < #LETTER: ["_","a"-"z","A"-"Z"] >
  55. |
  56. < #DIGIT: ["0"-"9"] >
  57. }
  58. /** Main production. */
  59. ASTStart Start() #Start : {}
  60. {
  61. Expression() ";"
  62. { return jjtThis; }
  63. }
  64. /** An Expression. */
  65. void Expression() : {}
  66. {
  67. AdditiveExpression()
  68. }
  69. /** An Additive Expression. */
  70. void AdditiveExpression() : {}
  71. {
  72. (
  73. MultiplicativeExpression() ( ( "+" | "-" ) MultiplicativeExpression() )*
  74. ) #Add(>1)
  75. }
  76. /** A Multiplicative Expression. */
  77. void MultiplicativeExpression() : {}
  78. {
  79. (
  80. UnaryExpression() ( ( "*" | "/" | "%" ) UnaryExpression() )*
  81. ) #Mult(>1)
  82. }
  83. /** A Unary Expression. */
  84. void UnaryExpression() : {}
  85. {
  86. "(" Expression() ")" | Identifier() | Integer()
  87. }
  88. /** An Identifier. */
  89. void Identifier() #MyOtherID :
  90. {
  91. Token t;
  92. }
  93. {
  94. t=<IDENTIFIER>
  95. {
  96. jjtThis.setName(t.image);
  97. }
  98. }
  99. /** An Integer. */
  100. void Integer() #Integer : {}
  101. {
  102. <INTEGER_LITERAL>
  103. }

首先option区域中的VISITOR=true;代表开启访问者模式,此时JJTree将在它生成的所有节点类中插入一个' jjtAccept() '方法,并生成一个可以实现并传递给节点接受的访问者接口。我们可以观察一下生成的代码。

生成的Visitor接口如下:
 

  1. package com.github.gambo.javacc.jjtree;
  2. public interface Eg2Visitor
  3. {
  4. public Object visit(SimpleNode node, Object data);
  5. public Object visit(ASTStart node, Object data);
  6. public Object visit(ASTAdd node, Object data);
  7. public Object visit(ASTMult node, Object data);
  8. public Object visit(ASTMyOtherID node, Object data);
  9. public Object visit(ASTInteger node, Object data);
  10. }

可以看到对所有非#voild节点都生成了相应的visit方法,接下来我们看一下Visitor的实现:

  1. package com.github.gambo.javacc.jjtree;
  2. public class Eg2DumpVisitor implements Eg2Visitor
  3. {
  4. private int indent = 0;
  5. private String indentString() {
  6. StringBuffer sb = new StringBuffer();
  7. for (int i = 0; i < indent; ++i) {
  8. sb.append(' ');
  9. }
  10. return sb.toString();
  11. }
  12. public Object visit(SimpleNode node, Object data) {
  13. System.out.println(indentString() + node +
  14. ": acceptor not unimplemented in subclass?");
  15. ++indent;
  16. data = node.childrenAccept(this, data);
  17. --indent;
  18. return data;
  19. }
  20. public Object visit(ASTStart node, Object data) {
  21. System.out.println(indentString() + node);
  22. ++indent;
  23. data = node.childrenAccept(this, data);
  24. --indent;
  25. return data;
  26. }
  27. public Object visit(ASTAdd node, Object data) {
  28. System.out.println(indentString() + node);
  29. ++indent;
  30. data = node.childrenAccept(this, data);
  31. --indent;
  32. return data;
  33. }
  34. public Object visit(ASTMult node, Object data) {
  35. System.out.println(indentString() + node);
  36. ++indent;
  37. data = node.childrenAccept(this, data);
  38. --indent;
  39. return data;
  40. }
  41. public Object visit(ASTMyOtherID node, Object data) {
  42. System.out.println(indentString() +"Identifier:"+ node.getName());
  43. ++indent;
  44. data = node.childrenAccept(this, data);
  45. --indent;
  46. return data;
  47. }
  48. public Object visit(ASTInteger node, Object data) {
  49. System.out.println(indentString() + node);
  50. ++indent;
  51. data = node.childrenAccept(this, data);
  52. --indent;
  53. return data;
  54. }
  55. }
  56. /*end*/

可以看到现在的节点树打印由每个节点的visit的方法中实现 。

data = node.childrenAccept(this, data);这行代码,代表调用当前节点子节点jjAccept方法,从而触发子节点visit的方法:

  1. public Object jjtAccept(Eg2Visitor visitor, Object data){
  2. return visitor.visit(this, data);
  3. }
  4. /** Accept the visitor. **/
  5. public Object childrenAccept(Eg2Visitor visitor, Object data){
  6. if (children != null) {
  7. for (int i = 0; i < children.length; ++i) {
  8. children[i].jjtAccept(visitor, data);
  9. }
  10. }
  11. return data;
  12. }

本文的入门示例改自源码中的example,后续的章节我们会使用jjtree演示一些更加深入的案例。

文中示例代码 :GitHub - ziyiyu/javacc-tutorial: javacc教程

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/694779
推荐阅读
相关标签
  

闽ICP备14008679号