cprover
|
#include <smt2_tokenizer.h>
Classes | |
class | smt2_errort |
Public Types | |
using | tokent = enum { NONE, END_OF_FILE, STRING_LITERAL, NUMERAL, SYMBOL, KEYWORD, OPEN, CLOSE } |
Public Member Functions | |
smt2_tokenizert (std::istream &_in) | |
tokent | next_token () |
tokent | peek () |
const std::string & | get_buffer () const |
bool | token_is_quoted_symbol () const |
smt2_errort | error (const std::string &message) |
generate an error exception, pre-filled with a message More... | |
smt2_errort | error () |
generate an error exception More... | |
Protected Member Functions | |
void | skip_to_end_of_list () |
skip any tokens until all parentheses are closed or the end of file is reached More... | |
Protected Attributes | |
std::istream * | in |
unsigned | line_no |
std::string | buffer |
bool | quoted_symbol = false |
bool | peeked |
tokent | token |
Private Member Functions | |
tokent | get_decimal_numeral () |
tokent | get_hex_numeral () |
tokent | get_bin_numeral () |
tokent | get_simple_symbol () |
tokent | get_quoted_symbol () |
tokent | get_string_literal () |
void | get_token_from_stream () |
read a token from the input stream and store it in 'token' More... | |
Static Private Member Functions | |
static bool | is_simple_symbol_character (char) |
Definition at line 17 of file smt2_tokenizer.h.
using smt2_tokenizert::tokent = enum { NONE, END_OF_FILE, STRING_LITERAL, NUMERAL, SYMBOL, KEYWORD, OPEN, CLOSE } |
Definition at line 59 of file smt2_tokenizer.h.
|
inlineexplicit |
Definition at line 20 of file smt2_tokenizer.h.
|
inline |
generate an error exception
Definition at line 101 of file smt2_tokenizer.h.
|
inline |
generate an error exception, pre-filled with a message
Definition at line 95 of file smt2_tokenizer.h.
|
private |
Definition at line 86 of file smt2_tokenizer.cpp.
|
inline |
Definition at line 84 of file smt2_tokenizer.h.
|
private |
Definition at line 59 of file smt2_tokenizer.cpp.
|
private |
Definition at line 115 of file smt2_tokenizer.cpp.
|
private |
Definition at line 144 of file smt2_tokenizer.cpp.
|
private |
Definition at line 26 of file smt2_tokenizer.cpp.
|
private |
Definition at line 172 of file smt2_tokenizer.cpp.
|
private |
read a token from the input stream and store it in 'token'
Definition at line 213 of file smt2_tokenizer.cpp.
|
staticprivate |
Definition at line 13 of file smt2_tokenizer.cpp.
smt2_tokenizert::tokent smt2_tokenizert::next_token | ( | ) |
Definition at line 203 of file smt2_tokenizer.cpp.
|
inline |
Definition at line 72 of file smt2_tokenizer.h.
|
protected |
skip any tokens until all parentheses are closed or the end of file is reached
|
inline |
Definition at line 89 of file smt2_tokenizer.h.
|
protected |
Definition at line 109 of file smt2_tokenizer.h.
|
protected |
Definition at line 107 of file smt2_tokenizer.h.
|
protected |
Definition at line 108 of file smt2_tokenizer.h.
|
protected |
Definition at line 111 of file smt2_tokenizer.h.
|
protected |
Definition at line 110 of file smt2_tokenizer.h.
|
protected |
Definition at line 112 of file smt2_tokenizer.h.