Commit 1edf51cf authored by erikcorry's avatar erikcorry Committed by Commit bot

Regularize namespace closing curlies

R=verwaest@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1143133002

Cr-Commit-Position: refs/heads/master@{#28502}
parent bf032c2e
......@@ -292,6 +292,6 @@ int LoopAssignmentAnalysis::GetAssignmentCountForTesting(Scope* scope,
}
return count;
}
}
}
} // namespace v8::internal::compiler
} // namespace compiler
} // namespace internal
} // namespace v8
......@@ -111,6 +111,6 @@ void GapResolver::PerformMove(ParallelMove* moves, MoveOperands* move) const {
}
}
}
}
}
} // namespace v8::internal::compiler
} // namespace compiler
} // namespace internal
} // namespace v8
......@@ -826,6 +826,6 @@ std::ostream& operator<<(std::ostream& os, const AsRPO& ar) {
}
return os;
}
}
}
} // namespace v8::internal::compiler
} // namespace compiler
} // namespace internal
} // namespace v8
......@@ -203,6 +203,6 @@ CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
return NULL;
}
#endif // !V8_TURBOFAN_BACKEND
}
}
} // namespace v8::internal::compiler
} // namespace compiler
} // namespace internal
} // namespace v8
......@@ -42,7 +42,7 @@ int FindFirstNonEmptySlot(Instruction* instr) {
return i;
}
} // namepace
} // namespace
MoveOptimizer::MoveOptimizer(Zone* local_zone, InstructionSequence* code)
......
......@@ -46,7 +46,7 @@ class ArchDefaultRegisterConfiguration : public RegisterConfiguration {
static base::LazyInstance<ArchDefaultRegisterConfiguration>::type
kDefaultRegisterConfiguration = LAZY_INSTANCE_INITIALIZER;
} // namepace
} // namespace
const RegisterConfiguration* RegisterConfiguration::ArchDefault() {
......
......@@ -1104,6 +1104,6 @@ void ScheduleVerifier::Run(Schedule* schedule) {
}
}
}
}
}
} // namespace v8::internal::compiler
} // namespace compiler
} // namespace internal
} // namespace v8
......@@ -1418,5 +1418,5 @@ RUNTIME_FUNCTION(Runtime_FastOneByteArrayJoin) {
// to a slow path.
return isolate->heap()->undefined_value();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -460,5 +460,5 @@ RUNTIME_FUNCTION(Runtime_CallSuperWithSpread) {
UNIMPLEMENTED();
return nullptr;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -420,5 +420,5 @@ RUNTIME_FUNCTION(Runtime_ObservationWeakMapCreate) {
Runtime::WeakCollectionInitialize(isolate, weakmap);
return *weakmap;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -441,5 +441,5 @@ RUNTIME_FUNCTION_RETURN_PAIR(Runtime_ResolvePossiblyDirectEval) {
return CompileGlobalEval(isolate, args.at<String>(1), outer_info,
args.at<Object>(3), language_mode, args.smi_at(5));
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -186,5 +186,5 @@ RUNTIME_FUNCTION(Runtime_DateField) {
if (index == 0) return date->value();
return JSDate::GetField(date, Smi::FromInt(index));
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -3212,5 +3212,5 @@ RUNTIME_FUNCTION(Runtime_DebugBreakInOptimizedCode) {
UNIMPLEMENTED();
return NULL;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -614,5 +614,5 @@ RUNTIME_FUNCTION(Runtime_ThrowStrongModeTooFewArguments) {
THROW_NEW_ERROR_RETURN_FAILURE(isolate,
NewTypeError(MessageTemplate::kStrongArity));
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -226,5 +226,5 @@ RUNTIME_FUNCTION(Runtime_GeneratorThrow) {
UNREACHABLE(); // Optimization disabled in SetUpGenerators().
return NULL;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -745,7 +745,7 @@ RUNTIME_FUNCTION(Runtime_BreakIteratorBreakType) {
return *isolate->factory()->NewStringFromStaticChars("unknown");
}
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
#endif // V8_I18N_SUPPORT
......@@ -416,5 +416,5 @@ RUNTIME_FUNCTION(Runtime_GetTypeFeedbackVector) {
CONVERT_ARG_CHECKED(JSFunction, function, 0);
return function->shared()->feedback_vector();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -49,5 +49,5 @@ RUNTIME_FUNCTION(Runtime_ParseJson) {
: JsonParser<false>::Parse(source));
return *result;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -435,5 +435,5 @@ RUNTIME_FUNCTION(Runtime_StoreArrayLiteralElement) {
}
return *object;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -290,5 +290,5 @@ RUNTIME_FUNCTION(Runtime_LiveEditRestartFrame) {
}
return heap->true_value();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -252,5 +252,5 @@ RUNTIME_FUNCTION(Runtime_IsMinusZero) {
HeapNumber* number = HeapNumber::cast(obj);
return isolate->heap()->ToBoolean(IsMinusZero(number->value()));
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -586,5 +586,5 @@ RUNTIME_FUNCTION(Runtime_GetRootNaN) {
DCHECK(args.length() == 0);
return isolate->heap()->nan_value();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -1566,5 +1566,5 @@ RUNTIME_FUNCTION(Runtime_DefineSetterPropertyUnchecked) {
setter, attrs));
return isolate->heap()->undefined_value();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -157,5 +157,5 @@ RUNTIME_FUNCTION(Runtime_GetObjectContextNotifierPerformChange) {
Handle<Context> context(object_info->GetCreationContext(), isolate);
return context->native_object_notifier_perform_change();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -81,5 +81,5 @@ RUNTIME_FUNCTION(Runtime_Fix) {
JSProxy::Fix(proxy);
return isolate->heap()->undefined_value();
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -1185,5 +1185,5 @@ RUNTIME_FUNCTION(Runtime_IsRegExp) {
CONVERT_ARG_CHECKED(Object, obj, 0);
return isolate->heap()->ToBoolean(obj->IsJSRegExp());
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -1135,5 +1135,5 @@ RUNTIME_FUNCTION(Runtime_Arguments) {
SealHandleScope shs(isolate);
return __RT_impl_Runtime_GetArgumentsProperty(args, isolate);
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -1349,5 +1349,5 @@ RUNTIME_FUNCTION(Runtime_StringGetLength) {
CONVERT_ARG_HANDLE_CHECKED(String, s, 0);
return Smi::FromInt(s->length());
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -96,5 +96,5 @@ RUNTIME_FUNCTION(Runtime_SymbolIsPrivate) {
CONVERT_ARG_CHECKED(Symbol, symbol, 0);
return isolate->heap()->ToBoolean(symbol->is_private());
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -501,5 +501,5 @@ TYPED_ARRAYS(TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION)
TYPED_ARRAYS(FIXED_TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION)
#undef FIXED_TYPED_ARRAYS_CHECK_RUNTIME_FUNCTION
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -718,5 +718,5 @@ DATA_VIEW_SETTER(Float32, float)
DATA_VIEW_SETTER(Float64, double)
#undef DATA_VIEW_SETTER
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
......@@ -284,5 +284,5 @@ RUNTIME_FUNCTION(Runtime_URIUnescape) {
: URIUnescape::Unescape<uc16>(isolate, source));
return *result;
}
}
} // namespace v8::internal
} // namespace internal
} // namespace v8
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