chromium/third_party/angle/src/tests/preprocessor_tests/PreprocessorTest.cpp

//
// Copyright 2012 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 "PreprocessorTest.h"
#include "compiler/preprocessor/Token.h"

namespace angle
{

void SimplePreprocessorTest::preprocess(const char *input,
                                        std::stringstream *output,
                                        pp::Preprocessor *preprocessor)
{}

void SimplePreprocessorTest::preprocess(const char *input, const pp::PreprocessorSettings &settings)
{}

void SimplePreprocessorTest::preprocess(const char *input)
{}

void SimplePreprocessorTest::preprocess(const char *input, const char *expected)
{}

void SimplePreprocessorTest::preprocess(const char *input, const char *expected, ShShaderSpec spec)
{}

void SimplePreprocessorTest::lexSingleToken(const char *input, pp::Token *token)
{}

void SimplePreprocessorTest::lexSingleToken(size_t count,
                                            const char *const input[],
                                            pp::Token *token)
{}

}  // namespace angle