aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/include_pragma_shadow.js
blob: 500f04bec70dbbf348f181e7c497e8be8b227310 (plain)
1
2
3
4
5
6
7
.pragma library
var Shadowed = 2;
var global = (function(){return this})()

// set Shadowed on the global object as well. This should be different from
// the variable above, as the library has it's on context
global.Shadowed = 1;