Closed
Description
Given a term defined as follows:
-thing = {
*[one] Thing
[other] Things
}
Should we allow this?
own = You have { $count ->
*[one] {-thing[$count]}
[other] {-thing[$count]}
}
Right now we require the proper key to be specified in the VariantExpression
, like so:
own = You have { $count ->
*[one] {-thing[one]}
[other] {-thing[other]}
}
Note that because we allow all valid variant keys, this is currently also legal:
own = You have { $count ->
*[one] {-thing[1]}
[other] {-thing[other]}
}