📄 terminal.java
字号:
package edu.ustc.cs.minijool.parser.ast;/** * A node representing a reference to a terminal in a production. * @author manu_s * */public class Terminal extends NameWithAction { /** * @param action */ public Terminal(SimpleName terminalName, Action action) { super(terminalName, action); } /* (non-Javadoc) * @see edu.berkeley.cs164.parser.ast.DCASTNode#accept(edu.berkeley.cs164.parser.ast.DCVisitor) */ public void accept(DPVisitor v) { boolean visitChildren = v.visit(this); if (visitChildren) { getName().accept(v); getAction().accept(v); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -