blob: bce9ced73d5551794ab63133d0701183c3e01402 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
#include "RuntimeLibraryPch.h"
namespace Js
{
JavascriptBigIntObject::JavascriptBigIntObject(JavascriptBigInt* value, DynamicType * type)
: DynamicObject(type), value(value)
{
Assert(type->GetTypeId() == TypeIds_BigIntObject);
}
JavascriptBigInt* JavascriptBigIntObject::GetValue() const
{
return this->value;
}
} // namespace Js