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

prompto.python.PythonLiteral Maven / Gradle / Ivy

The newest version!
package prompto.python;

import prompto.utils.CodeWriter;

public abstract class PythonLiteral implements PythonExpression {
	
	String text;
	
	protected PythonLiteral(String text) {
		this.text = text;
	}
	
	@Override
	public void toDialect(CodeWriter writer) {
		writer.append(text);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy