chromium/third_party/angle/src/compiler/preprocessor/Token.cpp

//
// Copyright 2011 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

#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)
{}

}  // namespace pp

}  // namespace angle