author | Christian Urban <christian.urban@kcl.ac.uk> |
Sat, 17 Dec 2022 12:42:49 +0000 | |
changeset 455 | 557d18cce0f0 |
parent 433 | 6af86ba1208f |
child 475 | 59e005dcf163 |
permissions | -rw-r--r-- |
403 | 1 |
import M3._ |
221 | 2 |
|
3 |
assert(nullable(ZERO) == false) |
|
4 |
assert(nullable(ONE) == true) |
|
5 |
assert(nullable(CHAR('a')) == false) |
|
6 |
assert(nullable(ZERO | ONE) == true) |
|
7 |
assert(nullable(ZERO | CHAR('a')) == false) |
|
8 |
assert(nullable(ONE ~ ONE) == true) |
|
9 |
assert(nullable(ONE ~ CHAR('a')) == false) |
|
10 |
assert(nullable(STAR(ZERO)) == true) |
|
433 | 11 |
assert(nullable(ALTs(List(ONE, CHAR('a'), ZERO))) == true) |
12 |
assert(nullable(SEQs(List(ONE, ALTs(List(ONE, CHAR('a'), ZERO)), STAR(ZERO)))) == true) |
|
221 | 13 |