~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/qjsengine/script/com/__init__.js

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
var wasDefinedAlready = (this["com"] != undefined);
 
2
__setupPackage__("com");
 
3
com.wasDefinedAlready = wasDefinedAlready;
 
4
com.name = __extension__;
 
5
com.level = 1;
 
6
 
 
7
com.postInitCallCount = 0;
 
8
com.originalPostInit = __postInit__;
 
9
__postInit__ = function() { ++com.postInitCallCount; };