We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5520c6 commit 79dd643Copy full SHA for 79dd643
1 file changed
crates/engine/src/parser/oracle_effect/subject.rs
@@ -3378,7 +3378,7 @@ fn build_keyword_choice_sub_ability(
3378
))
3379
}
3380
3381
-enum KeywordChoiceGrant {
+pub(super) enum KeywordChoiceGrant {
3382
NoMatch,
3383
Parsed {
3384
keywords: Vec<Keyword>,
@@ -3387,7 +3387,7 @@ enum KeywordChoiceGrant {
3387
UnsupportedNestedChoice,
3388
3389
3390
-fn parse_keyword_choice_grant(predicate: &str) -> KeywordChoiceGrant {
+pub(super) fn parse_keyword_choice_grant(predicate: &str) -> KeywordChoiceGrant {
3391
let lower = predicate.to_lowercase();
3392
3393
// CR 608.2d: "gain your choice of X, Y, or Z" offers a resolution-time choice.
0 commit comments