Commit aefbcbdd authored by Jakob Kummerow's avatar Jakob Kummerow Committed by Commit Bot

[cleanup] Consistent comments on namespace ends

This is a comment-only CL.

Change-Id: I002b1765bfa839982ab11c22f744734fdd34d4ce
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2352788Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#69417}
parent 367cef20
...@@ -327,7 +327,7 @@ class Clock final { ...@@ -327,7 +327,7 @@ class Clock final {
namespace { namespace {
DEFINE_LAZY_LEAKY_OBJECT_GETTER(Clock, GetClock) DEFINE_LAZY_LEAKY_OBJECT_GETTER(Clock, GetClock)
} } // namespace
Time Time::Now() { return GetClock()->Now(); } Time Time::Now() { return GetClock()->Now(); }
......
...@@ -37,7 +37,7 @@ class TimeTicks; ...@@ -37,7 +37,7 @@ class TimeTicks;
namespace time_internal { namespace time_internal {
template<class TimeClass> template<class TimeClass>
class TimeBase; class TimeBase;
} } // namespace time_internal
class TimeConstants { class TimeConstants {
public: public:
......
...@@ -25,7 +25,7 @@ class RootVisitor; ...@@ -25,7 +25,7 @@ class RootVisitor;
enum class InterpreterPushArgsMode : unsigned; enum class InterpreterPushArgsMode : unsigned;
namespace compiler { namespace compiler {
class CodeAssemblerState; class CodeAssemblerState;
} } // namespace compiler
template <typename T> template <typename T>
static constexpr T FirstFromVarArgs(T x, ...) noexcept { static constexpr T FirstFromVarArgs(T x, ...) noexcept {
......
...@@ -1439,7 +1439,7 @@ void Generate_InterpreterPushZeroAndArgsAndReturnAddress( ...@@ -1439,7 +1439,7 @@ void Generate_InterpreterPushZeroAndArgsAndReturnAddress(
#endif #endif
} }
} // end anonymous namespace } // anonymous namespace
// static // static
void Builtins::Generate_InterpreterPushArgsThenConstructImpl( void Builtins::Generate_InterpreterPushArgsThenConstructImpl(
......
...@@ -16,7 +16,7 @@ class CodeDesc; ...@@ -16,7 +16,7 @@ class CodeDesc;
namespace wasm { namespace wasm {
class WasmCode; class WasmCode;
} } // namespace wasm
class CodeReference { class CodeReference {
public: public:
......
...@@ -18,7 +18,7 @@ class BytecodeArray; ...@@ -18,7 +18,7 @@ class BytecodeArray;
namespace wasm { namespace wasm {
class WasmCode; class WasmCode;
} } // namespace wasm
// HandlerTable is a byte array containing entries for exception handlers in // HandlerTable is a byte array containing entries for exception handlers in
// the code object it is associated with. The tables come in two flavors: // the code object it is associated with. The tables come in two flavors:
......
...@@ -24,7 +24,7 @@ namespace v8 { ...@@ -24,7 +24,7 @@ namespace v8 {
namespace tracing { namespace tracing {
class TracedValue; class TracedValue;
} } // namespace tracing
namespace internal { namespace internal {
...@@ -36,7 +36,7 @@ class Zone; ...@@ -36,7 +36,7 @@ class Zone;
namespace wasm { namespace wasm {
struct WasmCompilationResult; struct WasmCompilationResult;
} } // namespace wasm
// OptimizedCompilationInfo encapsulates the information needed to compile // OptimizedCompilationInfo encapsulates the information needed to compile
// optimized code for a given function, and the results of the optimized // optimized code for a given function, and the results of the optimized
......
...@@ -17,7 +17,7 @@ namespace internal { ...@@ -17,7 +17,7 @@ namespace internal {
namespace wasm { namespace wasm {
class WasmCode; class WasmCode;
} } // namespace wasm
class SafepointEntry { class SafepointEntry {
public: public:
......
...@@ -20,7 +20,7 @@ namespace compiler { ...@@ -20,7 +20,7 @@ namespace compiler {
class Node; class Node;
} } // namespace compiler
struct UntaggedT {}; struct UntaggedT {};
......
...@@ -95,7 +95,7 @@ bool PerThreadAssertScope<kType, kAllow>::IsAllowed() { ...@@ -95,7 +95,7 @@ bool PerThreadAssertScope<kType, kAllow>::IsAllowed() {
namespace { namespace {
template <PerIsolateAssertType kType> template <PerIsolateAssertType kType>
using DataBit = base::BitField<bool, kType, 1>; using DataBit = base::BitField<bool, kType, 1>;
} } // namespace
template <PerIsolateAssertType kType, bool kAllow> template <PerIsolateAssertType kType, bool kAllow>
PerIsolateAssertScope<kType, kAllow>::PerIsolateAssertScope(Isolate* isolate) PerIsolateAssertScope<kType, kAllow>::PerIsolateAssertScope(Isolate* isolate)
......
...@@ -13,7 +13,7 @@ namespace v8 { ...@@ -13,7 +13,7 @@ namespace v8 {
namespace base { namespace base {
class RandomNumberGenerator; class RandomNumberGenerator;
} } // namespace base
namespace internal { namespace internal {
namespace compiler { namespace compiler {
......
...@@ -889,7 +889,7 @@ struct CommonOperatorGlobalCache final { ...@@ -889,7 +889,7 @@ struct CommonOperatorGlobalCache final {
namespace { namespace {
DEFINE_LAZY_LEAKY_OBJECT_GETTER(CommonOperatorGlobalCache, DEFINE_LAZY_LEAKY_OBJECT_GETTER(CommonOperatorGlobalCache,
GetCommonOperatorGlobalCache) GetCommonOperatorGlobalCache)
} } // namespace
CommonOperatorBuilder::CommonOperatorBuilder(Zone* zone) CommonOperatorBuilder::CommonOperatorBuilder(Zone* zone)
: cache_(*GetCommonOperatorGlobalCache()), zone_(zone) {} : cache_(*GetCommonOperatorGlobalCache()), zone_(zone) {}
......
...@@ -713,7 +713,7 @@ struct JSOperatorGlobalCache final { ...@@ -713,7 +713,7 @@ struct JSOperatorGlobalCache final {
namespace { namespace {
DEFINE_LAZY_LEAKY_OBJECT_GETTER(JSOperatorGlobalCache, GetJSOperatorGlobalCache) DEFINE_LAZY_LEAKY_OBJECT_GETTER(JSOperatorGlobalCache, GetJSOperatorGlobalCache)
} } // namespace
JSOperatorBuilder::JSOperatorBuilder(Zone* zone) JSOperatorBuilder::JSOperatorBuilder(Zone* zone)
: cache_(*GetJSOperatorGlobalCache()), zone_(zone) {} : cache_(*GetJSOperatorGlobalCache()), zone_(zone) {}
......
...@@ -1213,7 +1213,7 @@ struct SimplifiedOperatorGlobalCache final { ...@@ -1213,7 +1213,7 @@ struct SimplifiedOperatorGlobalCache final {
namespace { namespace {
DEFINE_LAZY_LEAKY_OBJECT_GETTER(SimplifiedOperatorGlobalCache, DEFINE_LAZY_LEAKY_OBJECT_GETTER(SimplifiedOperatorGlobalCache,
GetSimplifiedOperatorGlobalCache) GetSimplifiedOperatorGlobalCache)
} } // namespace
SimplifiedOperatorBuilder::SimplifiedOperatorBuilder(Zone* zone) SimplifiedOperatorBuilder::SimplifiedOperatorBuilder(Zone* zone)
: cache_(*GetSimplifiedOperatorGlobalCache()), zone_(zone) {} : cache_(*GetSimplifiedOperatorGlobalCache()), zone_(zone) {}
......
...@@ -27,7 +27,7 @@ class D8Console; ...@@ -27,7 +27,7 @@ class D8Console;
namespace internal { namespace internal {
class CancelableTaskManager; class CancelableTaskManager;
} } // namespace internal
// A single counter in a counter collection. // A single counter in a counter collection.
class Counter { class Counter {
......
...@@ -16,7 +16,7 @@ namespace v8 { ...@@ -16,7 +16,7 @@ namespace v8 {
namespace internal { namespace internal {
class BuiltinArguments; class BuiltinArguments;
} // internal } // namespace internal
namespace debug { namespace debug {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
namespace v8 { namespace v8 {
namespace debug { namespace debug {
struct LiveEditResult; struct LiveEditResult;
} } // namespace debug
namespace internal { namespace internal {
class Script; class Script;
......
...@@ -218,7 +218,7 @@ void InstructionTable::AddJumpConditionalShort() { ...@@ -218,7 +218,7 @@ void InstructionTable::AddJumpConditionalShort() {
namespace { namespace {
DEFINE_LAZY_LEAKY_OBJECT_GETTER(InstructionTable, GetInstructionTable) DEFINE_LAZY_LEAKY_OBJECT_GETTER(InstructionTable, GetInstructionTable)
} } // namespace
static const InstructionDesc cmov_instructions[16] = { static const InstructionDesc cmov_instructions[16] = {
{"cmovo", TWO_OPERANDS_INSTR, REG_OPER_OP_ORDER, false}, {"cmovo", TWO_OPERANDS_INSTR, REG_OPER_OP_ORDER, false},
......
...@@ -15,7 +15,7 @@ namespace v8 { ...@@ -15,7 +15,7 @@ namespace v8 {
namespace internal { namespace internal {
namespace wasm { namespace wasm {
class WasmCode; class WasmCode;
} } // namespace wasm
// Forward declarations. // Forward declarations.
class AbstractCode; class AbstractCode;
......
...@@ -49,7 +49,7 @@ namespace v8 { ...@@ -49,7 +49,7 @@ namespace v8 {
namespace base { namespace base {
class RandomNumberGenerator; class RandomNumberGenerator;
} } // namespace base
namespace debug { namespace debug {
class ConsoleDelegate; class ConsoleDelegate;
...@@ -112,19 +112,19 @@ class VMState; ...@@ -112,19 +112,19 @@ class VMState;
namespace interpreter { namespace interpreter {
class Interpreter; class Interpreter;
} } // namespace interpreter
namespace compiler { namespace compiler {
class PerIsolateCompilerCache; class PerIsolateCompilerCache;
} } // namespace compiler
namespace wasm { namespace wasm {
class WasmEngine; class WasmEngine;
} } // namespace wasm
namespace win64_unwindinfo { namespace win64_unwindinfo {
class BuiltinUnwindInfo; class BuiltinUnwindInfo;
} } // namespace win64_unwindinfo
namespace metrics { namespace metrics {
class Recorder; class Recorder;
......
...@@ -20,7 +20,7 @@ namespace v8 { ...@@ -20,7 +20,7 @@ namespace v8 {
namespace internal { namespace internal {
namespace wasm { namespace wasm {
class WasmCode; class WasmCode;
} } // namespace wasm
// Forward declarations. // Forward declarations.
class AbstractCode; class AbstractCode;
......
...@@ -34,7 +34,7 @@ namespace internal { ...@@ -34,7 +34,7 @@ namespace internal {
namespace testing { namespace testing {
class TestWithHeap; class TestWithHeap;
} } // namespace testing
class MarkerBase; class MarkerBase;
class PageBackend; class PageBackend;
......
...@@ -52,7 +52,7 @@ class TestMemoryAllocatorScope; ...@@ -52,7 +52,7 @@ class TestMemoryAllocatorScope;
namespace third_party_heap { namespace third_party_heap {
class Heap; class Heap;
} } // namespace third_party_heap
class IncrementalMarking; class IncrementalMarking;
class BackingStore; class BackingStore;
......
...@@ -18,7 +18,7 @@ namespace v8 { ...@@ -18,7 +18,7 @@ namespace v8 {
namespace base { namespace base {
class Semaphore; class Semaphore;
} } // namespace base
namespace internal { namespace internal {
......
...@@ -14,7 +14,7 @@ namespace internal { ...@@ -14,7 +14,7 @@ namespace internal {
namespace compiler { namespace compiler {
class CodeAssemblerState; class CodeAssemblerState;
} } // namespace compiler
class ExitPoint; class ExitPoint;
......
...@@ -13,7 +13,7 @@ namespace internal { ...@@ -13,7 +13,7 @@ namespace internal {
namespace compiler { namespace compiler {
class CodeAssemblerState; class CodeAssemblerState;
} } // namespace compiler
class BinaryOpAssembler : public CodeStubAssembler { class BinaryOpAssembler : public CodeStubAssembler {
public: public:
......
...@@ -18,7 +18,7 @@ namespace v8 { ...@@ -18,7 +18,7 @@ namespace v8 {
namespace tracing { namespace tracing {
class TracedValue; class TracedValue;
} } // namespace tracing
namespace internal { namespace internal {
......
...@@ -12,7 +12,7 @@ namespace internal { ...@@ -12,7 +12,7 @@ namespace internal {
namespace compiler { namespace compiler {
class CodeAssemblerState; class CodeAssemblerState;
} } // namespace compiler
class UnaryOpAssembler final { class UnaryOpAssembler final {
public: public:
......
...@@ -17,7 +17,7 @@ namespace v8 { ...@@ -17,7 +17,7 @@ namespace v8 {
// Forward declarations. // Forward declarations.
namespace base { namespace base {
class BoundedPageAllocator; class BoundedPageAllocator;
} } // namespace base
namespace internal { namespace internal {
......
...@@ -21,6 +21,6 @@ searchInTextByLinesImpl(V8InspectorSession*, const String16& text, ...@@ -21,6 +21,6 @@ searchInTextByLinesImpl(V8InspectorSession*, const String16& text,
const String16& query, bool caseSensitive, const String16& query, bool caseSensitive,
bool isRegex); bool isRegex);
} // namespace v8_inspector } // namespace v8_inspector
#endif // V8_INSPECTOR_SEARCH_UTIL_H_ #endif // V8_INSPECTOR_SEARCH_UTIL_H_
...@@ -83,7 +83,7 @@ std::unique_ptr<StringBuffer> StringBufferFrom(std::vector<uint8_t> str); ...@@ -83,7 +83,7 @@ std::unique_ptr<StringBuffer> StringBufferFrom(std::vector<uint8_t> str);
String16 stackTraceIdToString(uintptr_t id); String16 stackTraceIdToString(uintptr_t id);
} // namespace v8_inspector } // namespace v8_inspector
// See third_party/inspector_protocol/crdtp/serializer_traits.h. // See third_party/inspector_protocol/crdtp/serializer_traits.h.
namespace v8_crdtp { namespace v8_crdtp {
......
...@@ -14,6 +14,6 @@ class V8Inspector; ...@@ -14,6 +14,6 @@ class V8Inspector;
V8_EXPORT void SetMaxAsyncTaskStacksForTest(V8Inspector* inspector, int limit); V8_EXPORT void SetMaxAsyncTaskStacksForTest(V8Inspector* inspector, int limit);
V8_EXPORT void DumpAsyncTaskStacksStateForTest(V8Inspector* inspector); V8_EXPORT void DumpAsyncTaskStacksStateForTest(V8Inspector* inspector);
} // v8_inspector } // namespace v8_inspector
#endif // V8_INSPECTOR_TEST_INTERFACE_H_ #endif // V8_INSPECTOR_TEST_INTERFACE_H_
...@@ -14,7 +14,7 @@ namespace v8_inspector { ...@@ -14,7 +14,7 @@ namespace v8_inspector {
namespace ConsoleAgentState { namespace ConsoleAgentState {
static const char consoleEnabled[] = "consoleEnabled"; static const char consoleEnabled[] = "consoleEnabled";
} } // namespace ConsoleAgentState
V8ConsoleAgentImpl::V8ConsoleAgentImpl( V8ConsoleAgentImpl::V8ConsoleAgentImpl(
V8InspectorSessionImpl* session, protocol::FrontendChannel* frontendChannel, V8InspectorSessionImpl* session, protocol::FrontendChannel* frontendChannel,
......
...@@ -27,7 +27,7 @@ static const char allocationTrackingEnabled[] = "allocationTrackingEnabled"; ...@@ -27,7 +27,7 @@ static const char allocationTrackingEnabled[] = "allocationTrackingEnabled";
static const char samplingHeapProfilerEnabled[] = "samplingHeapProfilerEnabled"; static const char samplingHeapProfilerEnabled[] = "samplingHeapProfilerEnabled";
static const char samplingHeapProfilerInterval[] = static const char samplingHeapProfilerInterval[] =
"samplingHeapProfilerInterval"; "samplingHeapProfilerInterval";
} } // namespace HeapProfilerAgentState
class HeapSnapshotProgress final : public v8::ActivityControl { class HeapSnapshotProgress final : public v8::ActivityControl {
public: public:
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
namespace v8 { namespace v8 {
class CpuProfiler; class CpuProfiler;
class Isolate; class Isolate;
} } // namespace v8
namespace v8_inspector { namespace v8_inspector {
......
...@@ -115,7 +115,7 @@ std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectCommon( ...@@ -115,7 +115,7 @@ std::unique_ptr<protocol::Runtime::StackTrace> buildInspectorObjectCommon(
return stackTrace; return stackTrace;
} }
} // namespace } // namespace
V8StackTraceId::V8StackTraceId() : id(0), debugger_id(V8DebuggerId().pair()) {} V8StackTraceId::V8StackTraceId() : id(0), debugger_id(V8DebuggerId().pair()) {}
......
...@@ -18,7 +18,7 @@ namespace v8 { ...@@ -18,7 +18,7 @@ namespace v8 {
namespace sampler { namespace sampler {
class Sampler; class Sampler;
} } // namespace sampler
namespace internal { namespace internal {
......
...@@ -27,7 +27,7 @@ class CodeDesc; ...@@ -27,7 +27,7 @@ class CodeDesc;
namespace interpreter { namespace interpreter {
class Register; class Register;
} } // namespace interpreter
// CodeDataContainer is a container for all mutable fields associated with its // CodeDataContainer is a container for all mutable fields associated with its
// referencing {Code} object. Since {Code} objects reside on write-protected // referencing {Code} object. Since {Code} objects reside on write-protected
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
namespace U_ICU_NAMESPACE { namespace U_ICU_NAMESPACE {
class Collator; class Collator;
} // namespace U_ICU_NAMESPACE } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
namespace U_ICU_NAMESPACE { namespace U_ICU_NAMESPACE {
class ListFormatter; class ListFormatter;
} } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
namespace U_ICU_NAMESPACE { namespace U_ICU_NAMESPACE {
class Locale; class Locale;
} } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -26,8 +26,8 @@ namespace U_ICU_NAMESPACE { ...@@ -26,8 +26,8 @@ namespace U_ICU_NAMESPACE {
class UnicodeString; class UnicodeString;
namespace number { namespace number {
class LocalizedNumberFormatter; class LocalizedNumberFormatter;
} // namespace number } // namespace number
} // namespace U_ICU_NAMESPACE } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -26,8 +26,8 @@ namespace U_ICU_NAMESPACE { ...@@ -26,8 +26,8 @@ namespace U_ICU_NAMESPACE {
class PluralRules; class PluralRules;
namespace number { namespace number {
class LocalizedNumberFormatter; class LocalizedNumberFormatter;
} // namespace number } // namespace number
} // namespace U_ICU_NAMESPACE } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
namespace U_ICU_NAMESPACE { namespace U_ICU_NAMESPACE {
class RelativeDateTimeFormatter; class RelativeDateTimeFormatter;
} } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
namespace U_ICU_NAMESPACE { namespace U_ICU_NAMESPACE {
class BreakIterator; class BreakIterator;
} } // namespace U_ICU_NAMESPACE
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -15,7 +15,7 @@ namespace v8 { ...@@ -15,7 +15,7 @@ namespace v8 {
namespace internal { namespace internal {
TQ_OBJECT_CONSTRUCTORS_IMPL(PropertyDescriptorObject) TQ_OBJECT_CONSTRUCTORS_IMPL(PropertyDescriptorObject)
} } // namespace internal
} // namespace v8 } // namespace v8
#include "src/objects/object-macros-undef.h" #include "src/objects/object-macros-undef.h"
......
...@@ -57,7 +57,7 @@ PreParserIdentifier GetIdentifierHelper(Scanner* scanner, ...@@ -57,7 +57,7 @@ PreParserIdentifier GetIdentifierHelper(Scanner* scanner,
return PreParserIdentifier::Default(); return PreParserIdentifier::Default();
} }
} // unnamed namespace } // namespace
PreParserIdentifier PreParser::GetIdentifier() const { PreParserIdentifier PreParser::GetIdentifier() const {
const AstRawString* result = scanner()->CurrentSymbol(ast_value_factory()); const AstRawString* result = scanner()->CurrentSymbol(ast_value_factory());
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
namespace v8 { namespace v8 {
namespace sampler { namespace sampler {
class Sampler; class Sampler;
} } // namespace sampler
namespace internal { namespace internal {
// Forward declarations. // Forward declarations.
......
...@@ -2050,7 +2050,7 @@ class NullContextForSnapshotScope { ...@@ -2050,7 +2050,7 @@ class NullContextForSnapshotScope {
Isolate* isolate_; Isolate* isolate_;
Context prev_; Context prev_;
}; };
} // namespace } // namespace
bool HeapSnapshotGenerator::GenerateSnapshot() { bool HeapSnapshotGenerator::GenerateSnapshot() {
v8_heap_explorer_.TagGlobalObjects(); v8_heap_explorer_.TagGlobalObjects();
......
...@@ -86,7 +86,7 @@ inline CpuProfileNode::SourceType ProfileNode::source_type() const { ...@@ -86,7 +86,7 @@ inline CpuProfileNode::SourceType ProfileNode::source_type() const {
case CodeEventListener::NUMBER_OF_LOG_EVENTS: case CodeEventListener::NUMBER_OF_LOG_EVENTS:
return CpuProfileNode::kInternal; return CpuProfileNode::kInternal;
} }
} // namespace internal }
inline Isolate* ProfileNode::isolate() const { return tree_->isolate(); } inline Isolate* ProfileNode::isolate() const { return tree_->isolate(); }
......
...@@ -18,7 +18,7 @@ namespace v8 { ...@@ -18,7 +18,7 @@ namespace v8 {
namespace base { namespace base {
class RandomNumberGenerator; class RandomNumberGenerator;
} } // namespace base
namespace internal { namespace internal {
......
...@@ -492,7 +492,7 @@ static MaybeHandle<String> EscapePrivate(Isolate* isolate, ...@@ -492,7 +492,7 @@ static MaybeHandle<String> EscapePrivate(Isolate* isolate,
return dest; return dest;
} }
} // Anonymous namespace } // anonymous namespace
MaybeHandle<String> Uri::Escape(Isolate* isolate, Handle<String> string) { MaybeHandle<String> Uri::Escape(Isolate* isolate, Handle<String> string) {
Handle<String> result; Handle<String> result;
......
...@@ -38,7 +38,7 @@ constexpr bool kEnableSlowChecks = true; ...@@ -38,7 +38,7 @@ constexpr bool kEnableSlowChecks = true;
#else #else
constexpr bool kEnableSlowChecks = false; constexpr bool kEnableSlowChecks = false;
#endif #endif
} } // namespace
namespace v8 { namespace v8 {
namespace internal { namespace internal {
......
...@@ -26,7 +26,7 @@ namespace internal { ...@@ -26,7 +26,7 @@ namespace internal {
// Forward declarations. // Forward declarations.
namespace compiler { namespace compiler {
class CallDescriptor; class CallDescriptor;
} } // namespace compiler
namespace wasm { namespace wasm {
......
...@@ -34,7 +34,7 @@ namespace wasm { ...@@ -34,7 +34,7 @@ namespace wasm {
#ifdef V8_ENABLE_WASM_GDB_REMOTE_DEBUGGING #ifdef V8_ENABLE_WASM_GDB_REMOTE_DEBUGGING
namespace gdb_server { namespace gdb_server {
class GdbServer; class GdbServer;
} } // namespace gdb_server
#endif // V8_ENABLE_WASM_GDB_REMOTE_DEBUGGING #endif // V8_ENABLE_WASM_GDB_REMOTE_DEBUGGING
class AsyncCompileJob; class AsyncCompileJob;
......
...@@ -12,7 +12,7 @@ namespace internal { ...@@ -12,7 +12,7 @@ namespace internal {
namespace wasm { namespace wasm {
class StreamingDecoder; class StreamingDecoder;
} } // namespace wasm
// Exposes a WebAssembly API to JavaScript through the V8 API. // Exposes a WebAssembly API to JavaScript through the V8 API.
class WasmJs { class WasmJs {
......
...@@ -15,7 +15,7 @@ namespace v8 { ...@@ -15,7 +15,7 @@ namespace v8 {
namespace base { namespace base {
class BoundedPageAllocator; class BoundedPageAllocator;
} } // namespace base
namespace internal { namespace internal {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment