mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-25 14:35:49 +00:00
Turn on resolving of abstract-integer and abstract-float types, as well as materialization to their concrete types. Bug: tint:1504 Bug: chromium:1330805 Fixed: tint:1572 Change-Id: I09c95406e11b64bb0267fe7b1ed08af986dbd553 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/91840 Commit-Queue: Ben Clayton <bclayton@chromium.org> Reviewed-by: David Neto <dneto@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
26 lines
839 B
C++
26 lines
839 B
C++
// Copyright 2021 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/tint/resolver/resolver_test_helper.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace tint::resolver {
|
|
|
|
TestHelper::TestHelper() : resolver_(std::make_unique<Resolver>(this)) {}
|
|
|
|
TestHelper::~TestHelper() = default;
|
|
|
|
} // namespace tint::resolver
|