| 944 | |
| 945 | |
| 946 | class WhiteSpaceTerminal(Terminal): |
| 947 | |
| 948 | @property |
| 949 | def value(self): |
| 950 | return ' ' |
| 951 | |
| 952 | def startswith_fws(self): |
| 953 | return self and self[0] in WSP |
| 954 | |
| 955 | |
| 956 | class ValueTerminal(Terminal): |
no outgoing calls
no test coverage detected
searching dependent graphs…