Skip to content

Commit

Permalink
Allow richer type expressions for fields
Browse files Browse the repository at this point in the history
  • Loading branch information
reidspencer committed Feb 27, 2024
1 parent cba77fa commit 9cddf95
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,9 @@ private[parsing] trait TypeParser extends CommonParser {
private def fieldTypeExpression[u: P]: P[TypeExpression] = {
P(
cardinality(
predefinedTypes | patternType | uniqueIdType |
enumeration | aliasedTypeExpression | aliasedTypeExpression | sequenceType | rangeType |
alternation | entityReferenceType | aliasedTypeExpression
predefinedTypes | patternType | uniqueIdType | enumeration | sequenceType | mappingFromTo | aSetType |
graphType | tableType | replicaType | rangeType | decimalType | alternation | aggregation |
aliasedTypeExpression | entityReferenceType
)
)
}
Expand Down

0 comments on commit 9cddf95

Please sign in to comment.