Skip to content

Commit 79dd643

Browse files
committed
fix(PR-6192): expose nested-choice test seam
1 parent a5520c6 commit 79dd643

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/engine/src/parser/oracle_effect/subject.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3378,7 +3378,7 @@ fn build_keyword_choice_sub_ability(
33783378
))
33793379
}
33803380

3381-
enum KeywordChoiceGrant {
3381+
pub(super) enum KeywordChoiceGrant {
33823382
NoMatch,
33833383
Parsed {
33843384
keywords: Vec<Keyword>,
@@ -3387,7 +3387,7 @@ enum KeywordChoiceGrant {
33873387
UnsupportedNestedChoice,
33883388
}
33893389

3390-
fn parse_keyword_choice_grant(predicate: &str) -> KeywordChoiceGrant {
3390+
pub(super) fn parse_keyword_choice_grant(predicate: &str) -> KeywordChoiceGrant {
33913391
let lower = predicate.to_lowercase();
33923392

33933393
// CR 608.2d: "gain your choice of X, Y, or Z" offers a resolution-time choice.

0 commit comments

Comments
 (0)