Skip to content

Commit

Permalink
Fix 'Disallow unused variables' in Compiler.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tolauwae committed Dec 6, 2024
1 parent f1f6a61 commit 7cfc8a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/manage/Compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class WatCompiler extends Compiler {
let out: string = '';
let err: string = '';

function handle(error: ExecException | null, stdout: string, stderr: string) {
function handle(error: ExecException | null, stdout: string) {
out = stdout;
err = error?.message ?? '';
}
Expand Down Expand Up @@ -217,7 +217,7 @@ export class AsScriptCompiler extends Compiler {
let out: string = '';
let err: string = '';

function handle(error: ExecException | null, stdout: string, stderr: any) {
function handle(error: ExecException | null, stdout: string) {
out = stdout;
err = error?.message ?? '';
}
Expand Down Expand Up @@ -250,7 +250,7 @@ export class AsScriptCompiler extends Compiler {
let out: string = '';
let err: string = '';

function handle(error: ExecException | null, stdout: string, stderr: any) {
function handle(error: ExecException | null, stdout: string) {
out = stdout;
err = error?.message ?? '';
}
Expand Down

0 comments on commit 7cfc8a2

Please sign in to comment.