1 /*
2  * Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
3  * Use of this file is governed by the BSD 3-clause license that
4  * can be found in the LICENSE.txt file in the project root.
5  */
6 
7 package org.antlr.v4.runtime.tree;
8 
9 import org.antlr.v4.runtime.RuleContext;
10 
11 public interface RuleNode extends ParseTree {
getRuleContext()12 	RuleContext getRuleContext();
13 }
14