WasmReaderInfo.h 580 B

123456789101112131415161718192021
  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 Js
  7. {
  8. class WebAssemblyModule;
  9. }
  10. namespace Wasm
  11. {
  12. class WasmFunctionInfo;
  13. struct WasmReaderInfo
  14. {
  15. Field(WasmFunctionInfo*) m_funcInfo;
  16. Field(Js::WebAssemblyModule*) m_module;
  17. };
  18. }