Parser: Parse line method implementation #5
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
A method named
parser_lineshould exist in aparserclass, which requires a single line of text and can parse the line using other methods.These other methods include
parse_headering,parse_list, andparse_text, which will be created in separate issues.This is how a recursive descent parse works!
This was implemented as the
Parser::ParseBlockmethod.