aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qjsengine/script/com/__init__.js
blob: 7db3ee4cac7233ff2606a2f4477dfc61a7120932 (plain)
1
2
3
4
5
6
7
8
9
var wasDefinedAlready = (this["com"] != undefined);
__setupPackage__("com");
com.wasDefinedAlready = wasDefinedAlready;
com.name = __extension__;
com.level = 1;

com.postInitCallCount = 0;
com.originalPostInit = __postInit__;
__postInit__ = function() { ++com.postInitCallCount; };