/* Copyright (c) 2014 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #pragma once #include #include #include "util/trie.h" #include "util/name.h" #include "util/lua.h" namespace lean { unsigned get_max_prec(); unsigned get_arrow_prec(); class token_info { bool m_command; name m_token; name m_value; unsigned m_precedence; public: token_info():m_command(true) {} token_info(char const * val): m_command(true), m_token(val), m_value(val), m_precedence(0) {} token_info(char const * token, char const * val): m_command(true), m_token(token), m_value(val), m_precedence(0) {} token_info(char const * val, unsigned prec): m_command(false), m_token(val), m_value(val), m_precedence(prec) {} token_info(char const * token, char const * val, unsigned prec): m_command(false), m_token(token), m_value(val), m_precedence(prec) {} bool is_command() const { return m_command; } name const & token() const { return m_token; } name const & value() const { return m_value; } unsigned precedence() const { return m_precedence; } }; typedef ctrie token_table; token_table mk_token_table(); token_table mk_default_token_table(); token_table add_command_token(token_table const & s, char const * token); token_table add_command_token(token_table const & s, char const * token, char const * val); token_table add_token(token_table const & s, char const * token, unsigned prec = 0); token_table add_token(token_table const & s, char const * token, char const * val, unsigned prec = 0); void for_each(token_table const & s, std::function const & fn); void display(std::ostream & out, token_table const & s); token_table const * find(token_table const & s, char c); optional get_precedence(token_table const & s, char const * token); token_info const * value_of(token_table const & s); void open_token_table(lua_State * L); }