// Copyright 2019 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/objects/string-comparator.h" #include "src/objects/string-inl.h" namespace v8 { namespace internal { void StringComparator::State::Init( Tagged<String> string, const SharedStringAccessGuardIfNeeded& access_guard) { … } void StringComparator::State::Advance( int consumed, const SharedStringAccessGuardIfNeeded& access_guard) { … } bool StringComparator::Equals( Tagged<String> string_1, Tagged<String> string_2, const SharedStringAccessGuardIfNeeded& access_guard) { … } } // namespace internal } // namespace v8