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

org.qbicc.machine.llvm.impl.MetadataNodeRef Maven / Gradle / Ivy

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

public class MetadataNodeRef extends AbstractValue {
    private final int index;

    public MetadataNodeRef(final int index) {
        this.index = index;
    }

    public Appendable appendTo(final Appendable target) throws IOException {
        target.append('!');
        appendDecimal(target, index);
        return target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy