blob: d24a4b2e73bab1e331827c0d6bcd405847340881 [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.
//-------------------------------------------------------------------------------------------------------
var NeedLoad = 'ValueX';
function runAnimation(obj) {
switch (obj) {
case NeedLoad:
break;
case 'ValueY':
WScript.Echo('ValueY');
break;
case 'Blah':
WScript.Echo('Blah');
break;
default:
if (obj === 'ValueY') {
WScript.Echo('Bug');
}
WScript.Echo('default');
break;
}
}
runAnimation('ValueX');
runAnimation('ValueY');