intelliwacc ide #43

Merged
gc1523 merged 9 commits from intelliwacc-ide into master 2025-03-14 13:22:53 +00:00
10 changed files with 318 additions and 0 deletions
Showing only changes of commit 5778b3145d - Show all commits

BIN
wacc-compiler Executable file

Binary file not shown.

View File

@@ -40,7 +40,7 @@ function generateErrors(code, filePath) {
let output; let output;
try { try {
const waccExePath = `${__dirname}/wacc-compiler`; const waccExePath = `${__dirname}/../wacc-compiler`;
output = execSync(`${waccExePath} ${tmpFilePath}`, { encoding: 'utf8', stdio: 'pipe' }); output = execSync(`${waccExePath} ${tmpFilePath}`, { encoding: 'utf8', stdio: 'pipe' });
} catch (err) { } catch (err) {
console.log("Error running compiler"); console.log("Error running compiler");