objlit-shorthand-error.js 582 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. function test(str)
  6. {
  7. try
  8. {
  9. eval(str);
  10. }
  11. catch (e)
  12. {
  13. WScript.Echo(e);
  14. }
  15. }
  16. test("var a = { 1} ");
  17. test("var a = { 0.01 } ");
  18. test("var a = { \"s\" } ");