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

js.prompto.python.PythonNamedArgument.js Maven / Gradle / Ivy

function PythonNamedArgument(name, expression) {
    this.name = name;
    this.expression = expression;
    return this;
}

PythonNamedArgument.prototype.toDialect = function(writer) {
    writer.append(this.name);
    writer.append(" = ");
    this.expression.toDialect(writer);
};

exports.PythonNamedArgument = PythonNamedArgument;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy