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.atn;
8 
9 /**
10  *
11  * @author Sam Harwell
12  */
13 public abstract class AbstractPredicateTransition extends Transition {
14 
AbstractPredicateTransition(ATNState target)15 	public AbstractPredicateTransition(ATNState target) {
16 		super(target);
17 	}
18 
19 }
20