JSON.h 708 B

123456789101112131415161718
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. namespace JSON
  7. {
  8. class EntryInfo
  9. {
  10. public:
  11. static Js::FunctionInfo Stringify;
  12. static Js::FunctionInfo Parse;
  13. };
  14. Js::Var Stringify(Js::RecyclableObject* function, Js::CallInfo callInfo, ...);
  15. Js::Var Parse(Js::RecyclableObject* function, Js::CallInfo callInfo, ...);
  16. } // namespace JSON