#include "compiler/preprocessor/Token.h"
#include "common/debug.h"
#include "compiler/preprocessor/numeric_lex.h"
namespace angle
{
namespace pp
{
void Token::reset()
{ … }
bool Token::equals(const Token &other) const
{ … }
void Token::setAtStartOfLine(bool start)
{ … }
void Token::setHasLeadingSpace(bool space)
{ … }
void Token::setExpansionDisabled(bool disable)
{ … }
bool Token::iValue(int *value) const
{ … }
bool Token::uValue(unsigned int *value) const
{ … }
std::ostream &operator<<(std::ostream &out, const Token &token)
{ … }
}
}