chromium/third_party/skia/src/sksl/ir/SkSLSymbol.h

/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SKSL_SYMBOL
#define SKSL_SYMBOL

#include "include/private/base/SkAssert.h"
#include "src/sksl/SkSLPosition.h"
#include "src/sksl/ir/SkSLIRNode.h"

#include <memory>
#include <string_view>

namespace SkSL {

class Context;
class Expression;
class Type;

/**
 * Represents a symbol table entry.
 */
class Symbol : public IRNode {};

}  // namespace SkSL

#endif