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.
|
|
|
|
|
|
|
|
#ifndef SRC_AST_CASE_STATEMENT_H_
|
|
|
|
#define SRC_AST_CASE_STATEMENT_H_
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
#include "src/ast/block_statement.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
#include "src/ast/expression.h"
|
2020-06-02 20:12:02 +00:00
|
|
|
#include "src/ast/int_literal.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
#include "src/ast/statement.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-06-01 16:56:46 +00:00
|
|
|
/// A list of case literals
|
2020-11-16 16:31:07 +00:00
|
|
|
using CaseSelectorList = std::vector<IntLiteral*>;
|
2020-06-01 16:56:46 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
/// A case statement
|
|
|
|
class CaseStatement : public Statement {
|
|
|
|
public:
|
|
|
|
/// Constructor
|
2020-06-01 18:56:34 +00:00
|
|
|
/// Creates a default case statement
|
|
|
|
/// @param body the case body
|
2020-11-16 16:31:07 +00:00
|
|
|
explicit CaseStatement(BlockStatement* body);
|
2020-06-01 18:56:34 +00:00
|
|
|
/// Constructor
|
2020-06-02 17:18:56 +00:00
|
|
|
/// @param selectors the case selectors
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @param body the case body
|
2020-11-16 16:31:07 +00:00
|
|
|
CaseStatement(CaseSelectorList selectors, BlockStatement* body);
|
2020-03-02 20:47:43 +00:00
|
|
|
/// Constructor
|
|
|
|
/// @param source the source information
|
2020-06-02 17:18:56 +00:00
|
|
|
/// @param selectors the case selectors
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @param body the case body
|
|
|
|
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-03-02 20:47:43 +00:00
|
|
|
/// Move constructor
|
2020-04-09 18:52:06 +00:00
|
|
|
CaseStatement(CaseStatement&&);
|
2020-03-02 20:47:43 +00:00
|
|
|
~CaseStatement() override;
|
|
|
|
|
2020-06-02 17:18:56 +00:00
|
|
|
/// Sets the selectors for the case statement
|
|
|
|
/// @param selectors the selectors to set
|
|
|
|
void set_selectors(CaseSelectorList selectors) {
|
|
|
|
selectors_ = std::move(selectors);
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
2020-06-02 17:18:56 +00:00
|
|
|
/// @returns the case selectors, empty if none set
|
|
|
|
const CaseSelectorList& selectors() const { return selectors_; }
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns true if this is a default statement
|
2020-06-02 17:18:56 +00:00
|
|
|
bool IsDefault() const { return selectors_.empty(); }
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-07-27 15:25:00 +00:00
|
|
|
/// Sets the case body
|
|
|
|
/// @param body the case body
|
2020-11-16 16:31:07 +00:00
|
|
|
void set_body(BlockStatement* body) { body_ = body; }
|
2020-03-02 20:47:43 +00:00
|
|
|
/// @returns the case body
|
2020-11-16 16:31:07 +00:00
|
|
|
const BlockStatement* body() const { return body_; }
|
2020-09-29 18:40:40 +00:00
|
|
|
/// @returns the case body
|
2020-11-16 16:31:07 +00:00
|
|
|
BlockStatement* body() { return body_; }
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
/// @returns true if this is a case statement
|
2020-04-09 18:52:06 +00:00
|
|
|
bool IsCase() const override;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
/// @returns true if the node is valid
|
|
|
|
bool IsValid() const override;
|
|
|
|
|
|
|
|
/// Writes a representation of the node to the output stream
|
|
|
|
/// @param out the stream to write to
|
|
|
|
/// @param indent number of spaces to indent the node when writing
|
|
|
|
void to_str(std::ostream& out, size_t indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CaseStatement(const CaseStatement&) = delete;
|
|
|
|
|
2020-06-02 17:18:56 +00:00
|
|
|
CaseSelectorList selectors_;
|
2020-11-16 16:31:07 +00:00
|
|
|
BlockStatement* body_ = nullptr;
|
2020-03-02 20:47:43 +00:00
|
|
|
};
|
|
|
|
|
2020-11-16 16:31:07 +00:00
|
|
|
/// A list of case statements
|
|
|
|
using CaseStatementList = std::vector<CaseStatement*>;
|
2020-04-06 19:37:37 +00:00
|
|
|
|
2020-03-02 20:47:43 +00:00
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|
|
|
|
|
|
|
|
#endif // SRC_AST_CASE_STATEMENT_H_
|