package org.nwapw.abacus.lexing.pattern; /** * A pattern node that matches any character. * * @param the type that's used to tell which pattern this node belongs to. */ public class AnyNode extends PatternNode { @Override public boolean matches(char other) { return true; } }