
prompto.python.PythonBooleanLiteral Maven / Gradle / Ivy
package prompto.python;
public class PythonBooleanLiteral extends PythonLiteral {
Boolean value;
public PythonBooleanLiteral(String text) {
super(text);
value = Boolean.valueOf(text);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy