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.
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
#include "src/ast/variable_decl_statement.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-12-01 18:04:17 +00:00
|
|
|
#include "src/ast/clone_context.h"
|
|
|
|
#include "src/ast/module.h"
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-12-02 15:18:59 +00:00
|
|
|
VariableDeclStatement::VariableDeclStatement() : Base() {}
|
|
|
|
|
2020-11-16 16:31:07 +00:00
|
|
|
VariableDeclStatement::VariableDeclStatement(Variable* variable)
|
2020-11-30 23:30:58 +00:00
|
|
|
: Base(), variable_(variable) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
VariableDeclStatement::VariableDeclStatement(const Source& source,
|
2020-11-16 16:31:07 +00:00
|
|
|
Variable* variable)
|
2020-11-30 23:30:58 +00:00
|
|
|
: Base(source), variable_(variable) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
VariableDeclStatement::VariableDeclStatement(VariableDeclStatement&&) = default;
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
VariableDeclStatement::~VariableDeclStatement() = default;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-12-01 18:04:17 +00:00
|
|
|
VariableDeclStatement* VariableDeclStatement::Clone(CloneContext* ctx) const {
|
|
|
|
return ctx->mod->create<VariableDeclStatement>(ctx->Clone(source()),
|
|
|
|
ctx->Clone(variable_));
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
bool VariableDeclStatement::IsValid() const {
|
2020-03-17 14:59:46 +00:00
|
|
|
return variable_ != nullptr && variable_->IsValid();
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:48 +00:00
|
|
|
void VariableDeclStatement::to_str(std::ostream& out, size_t indent) const {
|
2020-03-02 20:47:43 +00:00
|
|
|
make_indent(out, indent);
|
2020-03-30 22:46:48 +00:00
|
|
|
out << "VariableDeclStatement{" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
variable_->to_str(out, indent + 2);
|
|
|
|
make_indent(out, indent);
|
|
|
|
out << "}" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|