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

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

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

final class IntConstant extends AbstractValue {
    final int value;

    IntConstant(final int value) {
        this.value = value;
    }

    public Appendable appendTo(final Appendable target) throws IOException {
        return appendDecimal(target, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy