add missing

This commit is contained in:
parrt 2015-06-19 08:46:11 -07:00
parent e9d62bb231
commit 55a33fb45d
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
package org.antlr.v4.runtime.misc;
public interface Predicate<T> {
boolean apply(T type);
}