blob: ffde0c66c130aedb069da390899b5011eb1cc1af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* 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_FUNCTIONDECLARATION
#define SKSL_FUNCTIONDECLARATION
#include "SkSLModifiers.h"
#include "SkSLSymbol.h"
#include "SkSLSymbolTable.h"
#include "SkSLType.h"
#include "SkSLVariable.h"
namespace SkSL {
/**
* A function declaration (not a definition -- does not contain a body).
*/
struct FunctionDeclaration : public Symbol {
FunctionDeclaration(Position position, std::string name,
std::vector<const Variable*> parameters, const Type& returnType)
: INHERITED(position, kFunctionDeclaration_Kind, std::move(name))
, fDefined(false)
, fBuiltin(false)
, fParameters(std::move(parameters))
, fReturnType(returnType) {}
std::string description() const override {
std::string result = fReturnType.description() + " " + fName + "(";
std::string separator = "";
for (auto p : fParameters) {
result += separator;
separator = ", ";
result += p->description();
}
result += ")";
return result;
}
bool matches(const FunctionDeclaration& f) const {
if (fName != f.fName) {
return false;
}
if (fParameters.size() != f.fParameters.size()) {
return false;
}
for (size_t i = 0; i < fParameters.size(); i++) {
if (fParameters[i]->fType != f.fParameters[i]->fType) {
return false;
}
}
return true;
}
mutable bool fDefined;
bool fBuiltin;
const std::vector<const Variable*> fParameters;
const Type& fReturnType;
typedef Symbol INHERITED;
};
} // namespace
#endif
|