blob: 908ce40146256bca663bb4f481136dba78c759ff [file] [log] [blame]
/*
* 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_FUNCTIONREFERENCE
#define SKSL_FUNCTIONREFERENCE
#include "src/sksl/SkSLContext.h"
#include "src/sksl/ir/SkSLExpression.h"
#include "src/sksl/ir/SkSLFunctionDeclaration.h"
namespace SkSL {
/**
* An identifier referring to a function name. This is an intermediate value: FunctionReferences are
* always eventually replaced by FunctionCalls in valid programs.
*/
class FunctionReference : public Expression {
public:
static constexpr Kind kExpressionKind = Kind::kFunctionReference;
FunctionReference(const Context& context, int offset,
std::vector<const FunctionDeclaration*> functions)
: INHERITED(offset, FunctionReferenceData{context.fInvalid_Type.get(), std::move(functions)}) {}
const Type& type() const override {
return *this->functionReferenceData().fType;
}
const std::vector<const FunctionDeclaration*>& functions() const {
return this->functionReferenceData().fFunctions;
}
bool hasProperty(Property property) const override {
return false;
}
std::unique_ptr<Expression> clone() const override {
return std::unique_ptr<Expression>(new FunctionReference(fOffset, this->functions(),
&this->type()));
}
String description() const override {
return String("<function>");
}
private:
FunctionReference(int offset, std::vector<const FunctionDeclaration*> functions,
const Type* type)
: INHERITED(offset, FunctionReferenceData{type, std::move(functions)}) {}
using INHERITED = Expression;
};
} // namespace SkSL
#endif