File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export class WatCompiler extends Compiler {
9898 let out : string = '' ;
9999 let err : string = '' ;
100100
101- function handle ( error : ExecException | null , stdout : string , stderr : string ) {
101+ function handle ( error : ExecException | null , stdout : string ) {
102102 out = stdout ;
103103 err = error ?. message ?? '' ;
104104 }
@@ -217,7 +217,7 @@ export class AsScriptCompiler extends Compiler {
217217 let out : string = '' ;
218218 let err : string = '' ;
219219
220- function handle ( error : ExecException | null , stdout : string , stderr : any ) {
220+ function handle ( error : ExecException | null , stdout : string ) {
221221 out = stdout ;
222222 err = error ?. message ?? '' ;
223223 }
@@ -250,7 +250,7 @@ export class AsScriptCompiler extends Compiler {
250250 let out : string = '' ;
251251 let err : string = '' ;
252252
253- function handle ( error : ExecException | null , stdout : string , stderr : any ) {
253+ function handle ( error : ExecException | null , stdout : string ) {
254254 out = stdout ;
255255 err = error ?. message ?? '' ;
256256 }
You can’t perform that action at this time.
0 commit comments