OS_2977448.js 587 B

1234567891011121314
  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. try {
  6. // Ensure that character classifier does not incorrectly classify \u2e2f as a letter.
  7. eval("ⸯ");
  8. } catch (e) {
  9. if (e instanceof SyntaxError)
  10. {
  11. WScript.Echo("PASS");
  12. }
  13. }