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/else_statement.h"
|
|
|
|
|
2021-01-26 16:57:10 +00:00
|
|
|
#include "src/program_builder.h"
|
2020-12-01 18:04:17 +00:00
|
|
|
|
2021-03-02 20:51:18 +00:00
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::ast::ElseStatement);
|
2020-12-02 18:19:28 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
ElseStatement::ElseStatement(const Source& source,
|
2020-11-16 16:31:07 +00:00
|
|
|
Expression* condition,
|
|
|
|
BlockStatement* body)
|
2020-11-30 23:30:58 +00:00
|
|
|
: Base(source), condition_(condition), body_(body) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
ElseStatement::ElseStatement(ElseStatement&&) = default;
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
ElseStatement::~ElseStatement() = default;
|
|
|
|
|
2020-12-01 18:04:17 +00:00
|
|
|
ElseStatement* ElseStatement::Clone(CloneContext* ctx) const {
|
2021-02-11 20:27:14 +00:00
|
|
|
// Clone arguments outside of create() call to have deterministic ordering
|
|
|
|
auto src = ctx->Clone(source());
|
|
|
|
auto* cond = ctx->Clone(condition_);
|
|
|
|
auto* b = ctx->Clone(body_);
|
|
|
|
return ctx->dst->create<ElseStatement>(src, cond, b);
|
2020-12-01 18:04:17 +00:00
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
bool ElseStatement::IsValid() const {
|
2020-07-27 15:25:00 +00:00
|
|
|
if (body_ == nullptr || !body_->IsValid()) {
|
|
|
|
return false;
|
2020-03-10 17:48:25 +00:00
|
|
|
}
|
2020-07-27 15:25:00 +00:00
|
|
|
return condition_ == nullptr || condition_->IsValid();
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 10:55:40 +00:00
|
|
|
void ElseStatement::to_str(const semantic::Info& sem,
|
|
|
|
std::ostream& out,
|
|
|
|
size_t indent) const {
|
2020-03-02 20:47:43 +00:00
|
|
|
make_indent(out, indent);
|
|
|
|
out << "Else{" << std::endl;
|
2020-03-16 13:39:44 +00:00
|
|
|
if (condition_ != nullptr) {
|
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << "(" << std::endl;
|
|
|
|
|
2021-01-29 10:55:40 +00:00
|
|
|
condition_->to_str(sem, out, indent + 4);
|
2020-03-16 13:39:44 +00:00
|
|
|
|
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << ")" << std::endl;
|
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << "{" << std::endl;
|
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
if (body_ != nullptr) {
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* stmt : *body_) {
|
2021-01-29 10:55:40 +00:00
|
|
|
stmt->to_str(sem, out, indent + 4);
|
2020-07-27 15:25:00 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << "}" << std::endl;
|
2020-03-10 17:48:25 +00:00
|
|
|
|
|
|
|
make_indent(out, indent);
|
|
|
|
out << "}" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|