- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- // Used by crossContext.js
- // Values defined here appear in crossContext.js as coming from remote context
- var re = /this/;
- var reg = /this/g;
- var rep = /(t)his/;
- var str = "this is a string."
- var strObject = new String("this is a string.");
|