2007-11-26 21:56:26 -05:00
|
|
|
! Copyright (C) 2007 Chris Double.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
!
|
|
|
|
USING: kernel tools.test peg peg.pl0 ;
|
2008-03-01 17:00:45 -05:00
|
|
|
IN: peg.pl0.tests
|
2007-11-26 21:56:26 -05:00
|
|
|
|
|
|
|
{ "abc" } [
|
2007-11-28 18:49:51 -05:00
|
|
|
"abc" ident parse parse-result-ast
|
2007-11-26 21:56:26 -05:00
|
|
|
] unit-test
|
|
|
|
|
|
|
|
{ 55 } [
|
2007-11-28 18:49:51 -05:00
|
|
|
"55abc" number parse parse-result-ast
|
2007-11-26 21:56:26 -05:00
|
|
|
] unit-test
|