Skip to content

Commit

Permalink
add ()
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamatha1718 committed Jan 31, 2025
1 parent ca92f79 commit 4a7a65e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/concerto-cto/lib/parser.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -922,10 +922,10 @@ DecoratorJSON =
"{" _ pairs:(KeyValue ("," _ KeyValue)*)? _ "}" {
return {
$class: "[email protected]",
value: pairs ? pairs.reduce(obj, pair) => {
value: pairs ? pairs.reduce((obj, pair) => {
obj[pair.key] = pair.value;
return obj;
}, {} : {},
}, {}) : {},
...buildRange(location())
};
}
Expand Down

0 comments on commit 4a7a65e

Please sign in to comment.