main_testing3/re_test2.scala
changeset 403 ffce7b61b446
parent 347 4de31fdc0d67
child 433 6af86ba1208f
equal deleted inserted replaced
402:de59aa20a1dc 403:ffce7b61b446
     1 import CW8c._
     1 import M3._
     2 
     2 
     3 assert(der('a', ZERO | ONE) == (ZERO | ZERO))
     3 assert(der('a', ZERO | ONE) == (ZERO | ZERO))
     4 assert(der('a', (CHAR('a') | ONE) ~ CHAR('a')) == ALT((ONE | ZERO) ~ CHAR('a'), ONE))
     4 assert(der('a', (CHAR('a') | ONE) ~ CHAR('a')) == ALT((ONE | ZERO) ~ CHAR('a'), ONE))
     5 assert(der('a', (CHAR('a') | CHAR('a')) ~ CHAR('a')) == (ONE | ONE) ~ CHAR('a'))
     5 assert(der('a', (CHAR('a') | CHAR('a')) ~ CHAR('a')) == (ONE | ONE) ~ CHAR('a'))
     6 assert(der('a', STAR(CHAR('a'))) == (ONE ~ STAR(CHAR('a'))))
     6 assert(der('a', STAR(CHAR('a'))) == (ONE ~ STAR(CHAR('a'))))