diff options
Diffstat (limited to 'parse.h')
-rw-r--r-- | parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,7 @@ enum token_type tok_junk, tok_identifier, tok_operator, tok_string, tok_number }; + struct token { source_loc location; @@ -29,6 +30,7 @@ struct token std::string content; }; + std::ostream& operator << (std::ostream& o, const token& t); |