1package org.antlr.runtime
2{
3	/** Rules can return start/stop info as well as possible trees and templates */
4	public class RuleReturnScope {
5		/** Return the start token or tree */
6		public function get start():Object { return null; }
7		/** Return the stop token or tree */
8		public function get stop():Object { return null; }
9		/** Has a value potentially if output=AST; */
10		public function get tree():Object { return null; }
11	}
12
13}