diff --git a/packages/safe-ds-lang/src/language/graphical-editor/ast-parser/parser.ts b/packages/safe-ds-lang/src/language/graphical-editor/ast-parser/parser.ts index 3a8a259dc..3e9372f5b 100644 --- a/packages/safe-ds-lang/src/language/graphical-editor/ast-parser/parser.ts +++ b/packages/safe-ds-lang/src/language/graphical-editor/ast-parser/parser.ts @@ -116,7 +116,9 @@ export class Parser { const pipeline = pipelines[0]!; const block = pipeline.body; const statementList: SdsStatement[] = block.statements; - statementList.forEach((statement) => Statement.parse(statement, this)); + statementList.forEach((statement) => { + Statement.parse(statement, this); + }); this.graph.uniquePath = this.getUniquePath(pipeline); this.graph.name = pipeline.name;