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

com.llamalad7.mixinextras.expression.impl.ast.identifiers.WildcardIdentifier Maven / Gradle / Ivy

package com.llamalad7.mixinextras.expression.impl.ast.identifiers;

import com.llamalad7.mixinextras.expression.impl.flow.FlowValue;
import com.llamalad7.mixinextras.expression.impl.pool.IdentifierPool;
import org.objectweb.asm.Type;

public class WildcardIdentifier implements MemberIdentifier, TypeIdentifier {
    @Override
    public boolean matches(IdentifierPool pool, FlowValue node) {
        return true;
    }

    @Override
    public boolean matches(IdentifierPool pool, Type type) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy