We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3874e6c commit be3a9f6Copy full SHA for be3a9f6
lib/ProgramCall.js
@@ -40,8 +40,9 @@ class ProgramCall {
40
this.xml = `<pgm name='${program}'`;
41
if (options.lib) this.xml += ` lib='${options.lib}'`;
42
if (options.func) this.xml += ` func='${options.func}'`;
43
+ if (options.mode) this.xml += ` mode='${options.mode}'`;
44
this.xml += ` error='${options.error || 'fast'}'>`;
- }
45
+ }
46
47
/**
48
* @private
0 commit comments