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

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

var ObjectList = require("../utils/ObjectList").ObjectList;

function PythonArgumentList(argument) {
    ObjectList.call(this);
    argument = argument || null;
    if(argument!==null) {
        this.add(argument);
    }
    return this;
}

PythonArgumentList.prototype = Object.create(ObjectList.prototype);
PythonArgumentList.prototype.constructor = PythonArgumentList;

PythonArgumentList.prototype.toDialect = function(writer) {
    if(this.length>0) {
        this.forEach(function(arg) {
            arg.toDialect(writer);
            writer.append(", ");
        });
        writer.trimLast(2);
    }
};

exports.PythonArgumentList = PythonArgumentList;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy