Skip to content

Commit

Permalink
fix: type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GideonKoenig committed Jan 21, 2025
1 parent ca06be5 commit 09e3f53
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 09e3f53

Please sign in to comment.