Skip to content

Commit bf1526a

Browse files
Merge pull request #274 from MarcelDiessner/feature/syntaxChecking
patch syntaxChecking
2 parents 8707f5c + b77b286 commit bf1526a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

engine/engine.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class Engine {
1919

2020
console.log("Environment: " + this.environmentName);
2121
if (! await this.isEnvironmentComplete()) {
22-
if (this.environment.failOnIncomplete) {
22+
if (this.environment.failOnIncomplete && !this.syntaxErrorLogger.activated) {
2323
throw "Environment incomplete: " + this.environmentName;
2424
} else if(!this.environment.skipMissingFunctions) {
2525
console.log("Environment incomplete: " + this.environmentName);

0 commit comments

Comments
 (0)