Handle missing token type in content rule

This commit is contained in:
Patrick Förster 2022-04-03 11:58:33 +02:00
parent 1157633789
commit 2a38269736

View file

@ -153,6 +153,7 @@ impl<'a> Parser<'a> {
TIKZ_LIBRARY_IMPORT_NAME => self.tikz_library_import(),
ENVIRONMENT_DEFINITION_NAME => self.environment_definition(),
BEGIN_BLOCK_COMMENT_NAME => self.block_comment(),
END_BLOCK_COMMENT_NAME => self.generic_command(),
_ => unreachable!(),
}
}