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

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

package org.qbicc.machine.llvm.impl;

import java.io.IOException;

/**
 *
 */
final class SourceFileImpl extends AbstractEmittable {
    private final String path;

    SourceFileImpl(final String path) {
        this.path = path;
    }

    @Override
    public Appendable appendTo(Appendable target) throws IOException {
        target.append("source_filename = ");
        appendEscapedString(target, path);
        return target;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy