2020-04-22 00:23:49 +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/expression.h"
|
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
#include "src/ast/test_helper.h"
|
2020-04-22 00:23:49 +00:00
|
|
|
#include "src/ast/type/alias_type.h"
|
|
|
|
#include "src/ast/type/i32_type.h"
|
|
|
|
|
|
|
|
namespace tint {
|
|
|
|
namespace ast {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class Expr : public Expression {
|
|
|
|
public:
|
|
|
|
Expr() : Expression() {}
|
|
|
|
|
|
|
|
bool IsValid() const override { return true; }
|
|
|
|
void to_str(std::ostream&, size_t) const override {}
|
|
|
|
};
|
|
|
|
|
2020-11-13 21:58:28 +00:00
|
|
|
using ExpressionTest = TestHelper;
|
2020-04-22 00:23:49 +00:00
|
|
|
|
|
|
|
TEST_F(ExpressionTest, set_result_type) {
|
|
|
|
type::I32Type i32;
|
|
|
|
|
|
|
|
Expr e;
|
|
|
|
e.set_result_type(&i32);
|
|
|
|
ASSERT_NE(e.result_type(), nullptr);
|
2020-11-30 23:30:58 +00:00
|
|
|
EXPECT_TRUE(e.result_type()->Is<type::I32Type>());
|
2020-04-22 00:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ExpressionTest, set_result_type_alias) {
|
|
|
|
type::I32Type i32;
|
|
|
|
type::AliasType a("a", &i32);
|
|
|
|
type::AliasType b("b", &a);
|
|
|
|
|
|
|
|
Expr e;
|
|
|
|
e.set_result_type(&b);
|
|
|
|
ASSERT_NE(e.result_type(), nullptr);
|
2020-11-30 23:30:58 +00:00
|
|
|
EXPECT_TRUE(e.result_type()->Is<type::I32Type>());
|
2020-04-22 00:23:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
} // namespace ast
|
2020-04-22 00:24:11 +00:00
|
|
|
} // namespace tint
|