// Copyright 2017 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. #ifndef V8_TORQUE_DECLARATION_VISITOR_H_ #define V8_TORQUE_DECLARATION_VISITOR_H_ #include <optional> #include <string> #include "src/base/macros.h" #include "src/torque/declarations.h" #include "src/torque/global-context.h" #include "src/torque/kythe-data.h" #include "src/torque/types.h" #include "src/torque/utils.h" namespace v8::internal::torque { Namespace* GetOrCreateNamespace(const std::string& name); class PredeclarationVisitor { … }; class DeclarationVisitor { … }; } // namespace v8::internal::torque #endif // V8_TORQUE_DECLARATION_VISITOR_H_