Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit dce0793

Browse files
committed
Renamed choice => achoice
1 parent f67bf55 commit dce0793

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/ATypeUtils.rsc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ Production aprod2prod(p:AProduction::prod(AType lhs, list[AType] atypes, attribu
265265
= Production::prod((p.alabel?) ? Symbol::label(asUnqualifiedName(p.alabel), atype2symbol(lhs)) : atype2symbol(lhs), [atype2symbol(e) | e <- atypes], { aattr2attr(a) | a <- as }
266266
);
267267
268-
Production aprod2prod(AProduction::choice(AType def, set[AProduction] alts))
269-
= Production::choice(atype2symbol(def), {aprod2prod(p) | p <- alts});
270-
268+
Production aprod2prod(ap: AProduction::achoice(AType def, set[AProduction] alts))
269+
= Production::choice(atype2symbol(def), {aprod2prod(p) | p <- alts});
270+
271271
Production aprod2prod(AProduction::\associativity(AType def, AAssociativity \assoc, set[AProduction] alternatives))
272272
= Production::\associativity(atype2symbol(def), AAssociativity2Associativity(\assoc), {aprod2prod(a) | a <- alternatives});
273273

0 commit comments

Comments
 (0)