blob: 81594000e56c89a7f28fe430cb45e20d51b3324c [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_ASTTYPE
#define SKSL_ASTTYPE
namespace SkSL {
/**
* A type, such as 'int' or 'struct foo'.
*/
struct ASTType : public ASTPositionNode {
enum Kind {
kIdentifier_Kind,
kStruct_Kind
};
ASTType(Position position, SkString name, Kind kind)
: INHERITED(position)
, fName(std::move(name))
, fKind(kind) {}
SkString description() const override {
return fName;
}
const SkString fName;
const Kind fKind;
typedef ASTPositionNode INHERITED;
};
} // namespace
#endif