| 123456789101112131415161718192021222324 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- // WinBlue 194710: wrong line/col number in exception from inside for in.
- function foo()
- {
- for (var p in c) // Error: c is undefined.
- {
- addPropertyName(p);
- }
- }
- try
- {
- foo();
- }
- catch (ex)
- {
- var truncatedPathStack = ex.stack.replace(/\(.*\\/g, "(");
- WScript.Echo(truncatedPathStack);
- }
|