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

org.qbicc.plugin.reachability.FieldReachabilityFacts Maven / Gradle / Ivy

package org.qbicc.plugin.reachability;

import org.qbicc.facts.Fact;
import org.qbicc.type.definition.element.FieldElement;

/**
 * The core set of field facts.
 */
public enum FieldReachabilityFacts implements Fact {
    /**
     * The field is touched by a read operation in reachable code.
     */
    IS_READ,
    /**
     * The field is touched by a write operation in reachable code.
     */
    IS_WRITTEN,
    ;

    @Override
    public Class getElementType() {
        return FieldElement.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy