/* * 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_FUNCTIONCALL #define SKSL_FUNCTIONCALL #include "src/sksl/SkSLDefines.h" #include "src/sksl/SkSLPosition.h" #include "src/sksl/ir/SkSLExpression.h" #include "src/sksl/ir/SkSLIRNode.h" #include <cstdint> #include <memory> #include <string> #include <utility> namespace SkSL { class Context; class FunctionDeclaration; class Type; enum class OperatorPrecedence : uint8_t; /** * A function invocation. */ class FunctionCall final : public Expression { … }; } // namespace SkSL #endif