outofmem.js 704 B

1234567891011121314151617181920
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
  4. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  5. //-------------------------------------------------------------------------------------------------------
  6. try
  7. {
  8. var longString = "A";
  9. for (var i = 0; i < 31; i++)
  10. longString += longString;
  11. WScript.Echo(longString.toString());
  12. }
  13. catch (e)
  14. {
  15. WScript.Echo(e.name);
  16. WScript.Echo(e.message);
  17. WScript.Echo(e.number);
  18. }