blob: f9c8e3146ab614ec7a1fb34a94469fb6c882b637 [file] [log] [blame]
Ryan Harrisondbc13af2022-02-21 15:19:07 +00001// Copyright 2020 The Tint Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#ifndef SRC_TINT_AST_TYPE_H_
16#define SRC_TINT_AST_TYPE_H_
17
18#include <string>
19
20#include "src/tint/ast/node.h"
21#include "src/tint/clone_context.h"
22
Ryan Harrisondbc13af2022-02-21 15:19:07 +000023// Forward declarations
dan sinclair34323ac2022-04-07 18:39:35 +000024namespace tint {
Ryan Harrisondbc13af2022-02-21 15:19:07 +000025class ProgramBuilder;
26class SymbolTable;
dan sinclair34323ac2022-04-07 18:39:35 +000027} // namespace tint
Ryan Harrisondbc13af2022-02-21 15:19:07 +000028
dan sinclair34323ac2022-04-07 18:39:35 +000029namespace tint::ast {
Ryan Harrisondbc13af2022-02-21 15:19:07 +000030/// Base class for a type in the system
31class Type : public Castable<Type, Node> {
32 public:
33 /// Move constructor
34 Type(Type&&);
35 ~Type() override;
36
37 /// @param symbols the program's symbol table
38 /// @returns the name for this type that closely resembles how it would be
39 /// declared in WGSL.
40 virtual std::string FriendlyName(const SymbolTable& symbols) const = 0;
41
42 protected:
43 /// Constructor
44 /// @param pid the identifier of the program that owns this node
45 /// @param src the source of this node
46 Type(ProgramID pid, const Source& src);
47};
48
dan sinclair34323ac2022-04-07 18:39:35 +000049} // namespace tint::ast
Ryan Harrisondbc13af2022-02-21 15:19:07 +000050
51#endif // SRC_TINT_AST_TYPE_H_