2020-03-02 20:47:43 +00:00
|
|
|
// Copyright 2020 The Tint Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#ifndef SRC_AST_STRUCT_DECORATION_H_
|
|
|
|
#define SRC_AST_STRUCT_DECORATION_H_
|
|
|
|
|
2020-11-03 21:40:20 +00:00
|
|
|
#include <memory>
|
2020-03-02 20:47:43 +00:00
|
|
|
#include <ostream>
|
2020-10-08 19:34:25 +00:00
|
|
|
#include <vector>
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-11-03 21:40:20 +00:00
|
|
|
#include "src/ast/decoration.h"
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
|
|
|
/// The struct decorations
|
2020-11-30 23:30:58 +00:00
|
|
|
class StructDecoration : public Castable<StructDecoration, Decoration> {
|
2020-11-03 21:40:20 +00:00
|
|
|
public:
|
|
|
|
/// The kind of decoration that this type represents
|
2020-11-18 19:33:30 +00:00
|
|
|
static constexpr const DecorationKind Kind = DecorationKind::kStruct;
|
2020-11-03 21:40:20 +00:00
|
|
|
|
|
|
|
~StructDecoration() override;
|
|
|
|
|
2020-11-30 23:30:58 +00:00
|
|
|
/// @return the decoration kind
|
|
|
|
DecorationKind GetKind() const override;
|
|
|
|
|
2020-11-03 21:40:20 +00:00
|
|
|
protected:
|
|
|
|
/// Constructor
|
2020-11-03 21:48:20 +00:00
|
|
|
/// @param source the source of this decoration
|
2020-11-30 23:30:58 +00:00
|
|
|
explicit StructDecoration(const Source& source);
|
2020-11-03 21:40:20 +00:00
|
|
|
};
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-10-08 18:33:25 +00:00
|
|
|
/// List of struct decorations
|
2020-11-16 16:31:07 +00:00
|
|
|
using StructDecorationList = std::vector<StructDecoration*>;
|
2020-10-08 18:33:25 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_AST_STRUCT_DECORATION_H_
|