Skip to content

Commit

Permalink
Fix swapped 'transient' with 'abstract'
Browse files Browse the repository at this point in the history
  • Loading branch information
EliotVU committed Jun 27, 2024
1 parent 71e85cb commit 9c60d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/UC/Symbols/ClassSymbol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ export class UCClassSymbol extends UCStructSymbol {
}

if (modifiers & ModifierFlags.Transient) {
text.push('abstract');
text.push('transient');
}

if (modifiers & ModifierFlags.Abstract) {
text.push('transient');
text.push('abstract');
}

return text;
Expand Down

0 comments on commit 9c60d3f

Please sign in to comment.