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/switch_statement.h"
|
|
|
|
|
|
|
|
#include "src/ast/case_statement.h"
|
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
|
|
|
|
2020-12-02 18:19:28 +00:00
|
|
|
TINT_INSTANTIATE_CLASS_ID(tint::ast::SwitchStatement);
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-04-06 19:37:37 +00:00
|
|
|
SwitchStatement::SwitchStatement(const Source& source,
|
2020-11-16 16:31:07 +00:00
|
|
|
Expression* condition,
|
2020-04-06 19:37:37 +00:00
|
|
|
CaseStatementList 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
|
|
|
SwitchStatement::SwitchStatement(SwitchStatement&&) = default;
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
SwitchStatement::~SwitchStatement() = default;
|
|
|
|
|
2020-12-01 18:04:17 +00:00
|
|
|
SwitchStatement* SwitchStatement::Clone(CloneContext* ctx) const {
|
|
|
|
return ctx->mod->create<SwitchStatement>(
|
|
|
|
ctx->Clone(source()), ctx->Clone(condition_), ctx->Clone(body_));
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
bool SwitchStatement::IsValid() const {
|
2020-03-17 03:53:41 +00:00
|
|
|
if (condition_ == nullptr || !condition_->IsValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* stmt : body_) {
|
2020-03-17 03:53:41 +00:00
|
|
|
if (stmt == nullptr || !stmt->IsValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwitchStatement::to_str(std::ostream& out, size_t indent) const {
|
|
|
|
make_indent(out, indent);
|
|
|
|
out << "Switch{" << std::endl;
|
|
|
|
condition_->to_str(out, indent + 2);
|
2020-03-17 03:53:41 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << "{" << std::endl;
|
|
|
|
|
2020-11-16 16:31:07 +00:00
|
|
|
for (auto* stmt : body_) {
|
2020-03-02 20:47:43 +00:00
|
|
|
stmt->to_str(out, indent + 4);
|
2020-03-17 03:53:41 +00:00
|
|
|
}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
make_indent(out, indent + 2);
|
|
|
|
out << "}" << std::endl;
|
2020-03-17 03:53:41 +00:00
|
|
|
|
|
|
|
make_indent(out, indent);
|
|
|
|
out << "}" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|