
js.prompto.python.PythonModule.js Maven / Gradle / Ivy
function PythonModule(ids) {
this.ids = ids;
}
PythonModule.prototype.toDialect = function(writer) {
writer.append(" from module: ");
this.ids.forEach(function(id) {
writer.append(id);
writer.append('.');
});
writer.trimLast(1);
}
exports.PythonModule = PythonModule;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy