Skip to content

Commit

Permalink
Added yarn.lock from main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
KamyaPA committed Dec 14, 2023
1 parent bd1452f commit d650881
Show file tree
Hide file tree
Showing 4 changed files with 551 additions and 557 deletions.
2 changes: 1 addition & 1 deletion src/lib/classes/automaton/GlobalDeclarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class GlobalDeclarations extends Declarations<
: {
name: this.type,
declarations: this.declarations,
};
};
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/lib/classes/automaton/SystemDeclarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class SystemDeclarations extends Declarations<
: {
name: this.type,
declarations: this.declarations,
};
};
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/lib/classes/automaton/component/Location.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ export class Location extends AutomatonClass<RawLocation> {
typeof raw.nickname === "string"
? Nickname.fromRaw(raw as { nickname: string }, {
positionReference: position,
})
})
: undefined,
typeof raw.invariant === "string"
? Invariant.fromRaw(raw as { invariant: string }, {
positionReference: position,
})
})
: undefined,
);
};
Expand Down
Loading

0 comments on commit d650881

Please sign in to comment.