2 void test_scheme_comments() {
3 test_parser_verify_parse(
4 test_parser_sourcefile("scheme", " ;;; comment"),
5 "scheme", "", ";;; comment", 0
9 void test_scheme_comment_entities() {
10 test_parser_verify_entity(
11 test_parser_sourcefile("scheme", " ;comment"),
16 void all_scheme_tests() {
17 test_scheme_comments();
18 test_scheme_comment_entities();