All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.waxeye.parser.WildCardTransition Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Waxeye Parser Generator
 * www.waxeye.org
 * Copyright (C) 2008-2010 Orlando Hill
 * Licensed under the MIT license. See 'LICENSE' for details.
 */
package org.waxeye.parser;

import org.waxeye.ast.IAST;

/**
 * A transition cost of matching any character.
 *
 * @param  The AST type.
 *
 * @author Orlando Hill
 */
public final class WildCardTransition > implements ITransition
{
    /** {@inheritDoc} */
    public IAST acceptVisitor(final ITransitionVisitor visitor)
    {
        return visitor.visitWildCardTransition(this);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy