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

io.github.douira.glsl_preprocessor.fs.StringFile Maven / Gradle / Ivy

The newest version!
package io.github.douira.glsl_preprocessor.fs;

import io.github.douira.glsl_preprocessor.*;

class StringFile implements VirtualFile {
	private final String content;

	public StringFile(String content) {
		this.content = content;
	}

	@Override
	public boolean isFile() {
		return true;
	}

	@Override
	public Source getSource() {
		return new StringLexerSource(content);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy