| 1879 | extern int read_errs; |
| 1880 | |
| 1881 | void reader() { |
| 1882 | write_section("banner"); |
| 1883 | create_symbol_table(); |
| 1884 | read_declarations(); |
| 1885 | read_grammar(); |
| 1886 | if(read_errs) done(1); |
| 1887 | free_symbol_table(); |
| 1888 | free_tags(); |
| 1889 | pack_names(); |
| 1890 | check_symbols(); |
| 1891 | pack_symbols(); |
| 1892 | pack_grammar(); |
| 1893 | free_symbols(); |
| 1894 | print_grammar(); |
| 1895 | } |
no test coverage detected