blob: 4ce7466af2681e2d4e223be5a89ed04a9d7d8fb8 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function test()
{
var r = /a/;
var r2 = r;
var str = "a";
WScript.Echo(r.exec(str));
WScript.Echo(r === r2);
}
test();
test();
var g;
var oldExec = RegExp.prototype.exec;
RegExp.prototype.exec = function(str)
{
g = this;
}
test();
WScript.Echo(oldExec.call(g, "a"));