mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-19 02:11:40 +00:00
Instead of ast::IdentifierExpression The member is not an expression, but a name. Fixed: tint:1257 Change-Id: I879ddf09c3e521a18cef85422bb2f8fe78cddf5b Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/118343 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Ben Clayton <bclayton@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
48 lines
1.9 KiB
C++
48 lines
1.9 KiB
C++
// 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/tint/ast/member_accessor_expression.h"
|
|
|
|
#include "src/tint/program_builder.h"
|
|
|
|
TINT_INSTANTIATE_TYPEINFO(tint::ast::MemberAccessorExpression);
|
|
|
|
namespace tint::ast {
|
|
|
|
MemberAccessorExpression::MemberAccessorExpression(ProgramID pid,
|
|
NodeID nid,
|
|
const Source& src,
|
|
const Expression* str,
|
|
const Identifier* mem)
|
|
: Base(pid, nid, src), structure(str), member(mem) {
|
|
TINT_ASSERT(AST, structure);
|
|
TINT_ASSERT_PROGRAM_IDS_EQUAL_IF_VALID(AST, structure, program_id);
|
|
TINT_ASSERT(AST, member);
|
|
TINT_ASSERT_PROGRAM_IDS_EQUAL_IF_VALID(AST, member, program_id);
|
|
}
|
|
|
|
MemberAccessorExpression::MemberAccessorExpression(MemberAccessorExpression&&) = default;
|
|
|
|
MemberAccessorExpression::~MemberAccessorExpression() = default;
|
|
|
|
const MemberAccessorExpression* MemberAccessorExpression::Clone(CloneContext* ctx) const {
|
|
// Clone arguments outside of create() call to have deterministic ordering
|
|
auto src = ctx->Clone(source);
|
|
auto* str = ctx->Clone(structure);
|
|
auto* mem = ctx->Clone(member);
|
|
return ctx->dst->create<MemberAccessorExpression>(src, str, mem);
|
|
}
|
|
|
|
} // namespace tint::ast
|