diff --git a/ContributionAgreement.md b/ContributionAgreement.md index 4b238d82cbc..d863b04aa8c 100644 --- a/ContributionAgreement.md +++ b/ContributionAgreement.md @@ -41,3 +41,4 @@ This agreement has been signed by: |Evgeniy Istomin|MadProbe| |Wenlu Wang| Kingwl| |Kevin Cadieux|kevcadieux| +|Aidan Bickford| BickfordA| diff --git a/lib/Jsrt/JsrtDebugUtils.cpp b/lib/Jsrt/JsrtDebugUtils.cpp index 64ea3cf831c..d2a296091b9 100644 --- a/lib/Jsrt/JsrtDebugUtils.cpp +++ b/lib/Jsrt/JsrtDebugUtils.cpp @@ -1,5 +1,6 @@ //------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft. All rights reserved. +// Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. //------------------------------------------------------------------------------------------------------- @@ -215,6 +216,11 @@ void JsrtDebugUtils::AddPropertyType(Js::DynamicObject * object, Js::IDiagObject addDisplay = true; break; + case Js::TypeIds_ModuleNamespace: + JsrtDebugUtils::AddPropertyToObject(object, JsrtDebugPropertyId::type, scriptContext->GetLibrary()->GetModuleTypeDisplayString(), scriptContext); + addDisplay = true; + break; + case Js::TypeIds_Enumerator: case Js::TypeIds_HostDispatch: case Js::TypeIds_UnscopablesWrapperObject: