this[method] = function()

in lib/builtin.js [29:39]


      this[method] = function (ast, level, async) {
        this.generator.imports.push(_getImport(this.module));
        if(async) {
          this.generator.emit('await ');
        }
        this.generator.emit(`${this.module}.${_snakeCase(method)}`);
        if(async) {
          this.generator.emit('_async');
        }
        this.generator.visitArgs(ast.args, level);
      };