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.
|
|
|
|
|
|
|
|
#include "src/ast/variable_decoration.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "src/ast/binding_decoration.h"
|
|
|
|
#include "src/ast/builtin_decoration.h"
|
2020-09-29 18:07:50 +00:00
|
|
|
#include "src/ast/constant_id_decoration.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
#include "src/ast/location_decoration.h"
|
|
|
|
#include "src/ast/set_decoration.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-11-18 19:33:30 +00:00
|
|
|
constexpr const DecorationKind VariableDecoration::Kind;
|
|
|
|
|
|
|
|
VariableDecoration::VariableDecoration(DecorationKind kind,
|
|
|
|
const Source& source)
|
|
|
|
: Decoration(kind, source) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
VariableDecoration::~VariableDecoration() = default;
|
|
|
|
|
2020-11-18 19:33:30 +00:00
|
|
|
bool VariableDecoration::IsKind(DecorationKind kind) const {
|
|
|
|
return kind == Kind;
|
|
|
|
}
|
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
bool VariableDecoration::IsBinding() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VariableDecoration::IsBuiltin() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VariableDecoration::IsLocation() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-09-29 18:07:50 +00:00
|
|
|
bool VariableDecoration::IsConstantId() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
bool VariableDecoration::IsSet() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
BindingDecoration* VariableDecoration::AsBinding() {
|
|
|
|
assert(IsBinding());
|
|
|
|
return static_cast<BindingDecoration*>(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
BuiltinDecoration* VariableDecoration::AsBuiltin() {
|
|
|
|
assert(IsBuiltin());
|
|
|
|
return static_cast<BuiltinDecoration*>(this);
|
|
|
|
}
|
|
|
|
|
2020-09-29 18:07:50 +00:00
|
|
|
ConstantIdDecoration* VariableDecoration::AsConstantId() {
|
|
|
|
assert(IsConstantId());
|
|
|
|
return static_cast<ConstantIdDecoration*>(this);
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
LocationDecoration* VariableDecoration::AsLocation() {
|
|
|
|
assert(IsLocation());
|
|
|
|
return static_cast<LocationDecoration*>(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
SetDecoration* VariableDecoration::AsSet() {
|
|
|
|
assert(IsSet());
|
|
|
|
return static_cast<SetDecoration*>(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|