diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-10-31 18:10:58 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-10-31 18:10:58 +0100 |
commit | 8256280b348b4b53fff35c9101ced0a8dfb2c58e (patch) | |
tree | e745b79e98c853cf1891372e8b2a926a5d81fff5 /minicc.cpp | |
parent | ce77838c4f32b9dc237f0c4b17d1f1e1741254d4 (diff) |
CPP::translate() (WIP), documentation, bugfixing
Diffstat (limited to 'minicc.cpp')
-rw-r--r-- | minicc.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -50,7 +50,13 @@ void Location::advance(bool newline) } } -std::string Location::toString() +std::string Location::toString() const { return std::to_string(line) + ":"s + std::to_string(column); } + +std::string Token::toString() const +{ + return location.toString() + ": "s + value + " ("s + type + ")"s; +} + |