git @ Cat's Eye Technologies Tandem / 3b2af33
Appearance of strings s and t in individual rule is optional. Chris Pressey 4 years ago
2 changed file(s) with 3 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
0 Q 0 -> 1 & ("R" "M" -> "N" & Z ""... -> "M" | L"M"…→"N"… | P1→2 | Ya…->b*) | Q"->"->"..."
0 Q 0 -> 1 & ("R" "M" -> "N" & Z ""... -> "M" | L"M"…→"N"… | P1→ | (Z→1 | X→)* | Ya…->b*) | Q"->"->"..."
44
55 import Language.Tandem.Rule
66
7 -- TODO: optional strings
87 -- TODO: pragmas
98 -- TODO: % reverse syntax
109
4342
4443 individual = do
4544 l <- (quotedString <|> bareLabel)
46 s <- (quotedString <|> bareWord)
45 s <- option "" (quotedString <|> bareWord)
4746 so <- option False ellipsis
4847 arrow
49 t <- (quotedString <|> bareWord)
48 t <- option "" (quotedString <|> bareWord)
5049 to <- option False ellipsis
5150 return $ case (so, to) of
5251 (False, False) -> RewExact l s t