/* * 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_EXPRESSION #define SKSL_EXPRESSION #include "include/core/SkTypes.h" #include "src/sksl/SkSLPosition.h" #include "src/sksl/ir/SkSLIRNode.h" #include "src/sksl/ir/SkSLType.h" #include <cstdint> #include <memory> #include <optional> #include <string> namespace SkSL { class AnyConstructor; class Context; enum class OperatorPrecedence : uint8_t; /** * Abstract supertype of all expressions. */ class Expression : public IRNode { … }; } // namespace SkSL #endif