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:06 +00:00
|
|
|
#include "src/ast/scalar_constructor_expression.h"
|
2020-03-02 20:47:43 +00:00
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
ScalarConstructorExpression::ScalarConstructorExpression()
|
|
|
|
: ConstructorExpression() {}
|
2020-03-06 21:18:50 +00:00
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
ScalarConstructorExpression::ScalarConstructorExpression(
|
2020-03-02 20:47:43 +00:00
|
|
|
std::unique_ptr<Literal> literal)
|
2020-03-30 22:46:06 +00:00
|
|
|
: ConstructorExpression(), literal_(std::move(literal)) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
ScalarConstructorExpression::ScalarConstructorExpression(
|
2020-03-02 20:47:43 +00:00
|
|
|
const Source& source,
|
|
|
|
std::unique_ptr<Literal> litearl)
|
2020-03-30 22:46:06 +00:00
|
|
|
: ConstructorExpression(source), literal_(std::move(litearl)) {}
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
ScalarConstructorExpression::ScalarConstructorExpression(
|
|
|
|
ScalarConstructorExpression&&) = default;
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
ScalarConstructorExpression::~ScalarConstructorExpression() = default;
|
2020-03-02 20:47:43 +00:00
|
|
|
|
2020-04-09 18:52:06 +00:00
|
|
|
bool ScalarConstructorExpression::IsScalarConstructor() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
bool ScalarConstructorExpression::IsValid() const {
|
2020-03-02 20:47:43 +00:00
|
|
|
return literal_ != nullptr;
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:46:06 +00:00
|
|
|
void ScalarConstructorExpression::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:06 +00:00
|
|
|
out << "ScalarConstructor{" << literal_->to_str() << "}" << std::endl;
|
2020-03-02 20:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ast
|
|
|
|
} // namespace tint
|