rulereturnscope.java

来自「ANTLR(ANother Tool for Language Recognit」· Java 代码 · 共 16 行

JAVA
16
字号
package org.antlr.runtime;import org.antlr.stringtemplate.StringTemplate;/** Rules can return start/stop info as well as possible trees and templates */public class RuleReturnScope {	/** Return the start token or tree */	public Object getStart() { return null; }	/** Return the stop token or tree */	public Object getStop() { return null; }	/** Has a value potentially if output=AST; */	public Object getTree() { return null; }	/** Has a value potentially if output=template; */	public StringTemplate getTemplate() { return null; }}

⌨️ 快捷键说明

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