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

📄 rulereturnscope.java

📁 antlr最新版本V3源代码
💻 JAVA
字号:
package org.antlr.runtime;/** 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; Don't use StringTemplate	 *  type as it then causes a dependency with ST lib.	 */	public Object getTemplate() { return null; }}

⌨️ 快捷键说明

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