/* * 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 "src/sksl/ir/SkSLIRNode.h" #include "src/sksl/ir/SkSLProgramElement.h" namespace SkSL { /** * Represents a symboltable entry. */ struct Symbol : public IRNode { enum class Kind { kExternal = (int) ProgramElement::Kind::kLast + 1, kField, kFunctionDeclaration, kType, kUnresolvedFunction, kVariable, kFirst = kExternal, kLast = kVariable }; Symbol(int offset, Kind kind, StringFragment name) : INHERITED(offset, (int) kind) , fName(name) { SkASSERT(kind >= Kind::kFirst && kind <= Kind::kLast); } ~Symbol() override {} Kind kind() const { return (Kind) fKind; } /** * Use is to check the type of a symbol. * e.g. replace `sym.fKind == Symbol::kVariable_Kind` with `sym.is()`. */ template bool is() const { return this->kind() == T::kSymbolKind; } /** * Use as to downcast symbols. e.g. replace `(Variable&) sym` with `sym.as()`. */ template const T& as() const { SkASSERT(this->is()); return static_cast(*this); } template T& as() { SkASSERT(this->is()); return static_cast(*this); } StringFragment fName; using INHERITED = IRNode; }; } // namespace SkSL #endif