1 #ifndef INCLUDE_PARSER_H_
2 #define INCLUDE_PARSER_H_
6 #include <unordered_map>
27 std::ostream& operator<<(std::ostream& os, ParsedType c);
57 bool evaluate(
const std::unordered_map<std::string, AtomicValue>& constants);
67 bool evaluateAddress(
const std::unordered_map<std::string, AtomicValue>& constants, int32_t
index = 0);
69 bool evaluateIndex(
const std::unordered_map<std::string, AtomicValue>& constants, int32_t
index = 0);
71 bool evaluateField(
const std::unordered_map<std::string, AtomicValue>& constants, int32_t
index = 0);
82 static ParsedResult parseLine(
const std::string& line,
const std::string& lineSymbol,
bool hasLocation =
true);
87 #endif // INCLUDE_PARSER_H_