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/case_statement.h"
|
|
|
|
|
2021-01-21 16:20:40 +00:00
|
|
|
#include "src/clone_context.h"
|
2021-01-26 16:57:10 +00:00
|
|
|
#include "src/program_builder.h"
|
2020-12-01 18:04:17 +00:00
|
|
|
|
2020-12-02 18:19:28 +00:00
|
|
|
TINT_INSTANTIATE_CLASS_ID(tint::ast::CaseStatement);
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
|
|
|
CaseStatement::CaseStatement(const Source& source,
|
2020-06-02 17:18:56 +00:00
|
|
|
CaseSelectorList selectors,
|
2020-11-16 16:31:07 +00:00
|
|
|
BlockStatement* body)
|
2020-11-30 23:30:58 +00:00
|
|
|
: Base(source), selectors_(selectors), body_(body) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
CaseStatement::CaseStatement(CaseStatement&&) = default;
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
CaseStatement::~CaseStatement() = default;
|
|
|
|
|
2020-12-01 18:04:17 +00:00
|
|
|
CaseStatement* CaseStatement::Clone(CloneContext* ctx) const {
|
2021-01-22 13:41:06 +00:00
|
|
|
return ctx->dst->create<CaseStatement>(
|
2020-12-01 18:04:17 +00:00
|
|
|
ctx->Clone(source()), ctx->Clone(selectors_), ctx->Clone(body_));
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
bool CaseStatement::IsValid() const {
|
2020-07-27 15:25:00 +00:00
|
|
|
return body_ != nullptr && body_->IsValid();
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CaseStatement::to_str(std::ostream& out, size_t indent) const {
|
|
|
|
make_indent(out, indent);
|
|
|
|
|
|
|
|
if (IsDefault()) {
|
2020-03-06 14:28:01 +00:00
|
|
|
out << "Default{" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
} else {
|
2020-06-01 16:56:46 +00:00
|
|
|
out << "Case ";
|
|
|
|
bool first = true;
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* selector : selectors_) {
|
2020-06-01 16:56:46 +00:00
|
|
|
if (!first)
|
|
|
|
out << ", ";
|
|
|
|
|
|
|
|
first = false;
|
2020-06-02 17:18:56 +00:00
|
|
|
out << selector->to_str();
|
2020-06-01 16:56:46 +00:00
|
|
|
}
|
|
|
|
out << "{" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
if (body_ != nullptr) {
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* stmt : *body_) {
|
2020-07-27 15:25:00 +00:00
|
|
|
stmt->to_str(out, indent + 2);
|
|
|
|
}
|
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
make_indent(out, indent);
|
|
|
|
out << "}" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|