
js.prompto.python.PythonLiteral.js Maven / Gradle / Ivy
function PythonLiteral(text) {
this.text = text;
return this;
}
PythonLiteral.prototype.toString = function() {
return this.text;
};
PythonLiteral.prototype.toDialect = function(writer) {
writer.append(this.text);
};
exports.PythonLiteral = PythonLiteral;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy