1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
requirejs.config({
// baseUrl: 'js/app',
paths: {
jquery: "libs/jquery",
piwik: "libs/piwik"
},
shim: {
'jquery': {
exports: ['jQuery', '$']
}
,
'piwik': {
exports: 'piwik'
}
}
});
// Start the main app logic.
requirejs(['jquery', "piwik", "app/function", "app/newFunction", "app/objectLiteral", "app/stdModule"],
function($, pi, func, newFunc, obj, stdModule) {
//cc;23/1;stdModule.;0;getSomeDate,dummy,dummy2,logIt,hasOwnProperty;dum;du|mmy;conquer,yell,a
//cc;25/1;func().;0;a,b,hasOwnProperty;;;conquer,yell,c
//cc;27/1;func().a.;0;getDate,getYear,hasOwnProperty,getDay;getDate;getDate;conquer,yell,c
//cc;29/1;newFunc.;0;spaceShip,origin,birth,conquer,hasOwnProperty,getBirthDate,getWannabeDate,getStuff,anatomy;getBirthDate;getBirthDate;yell,a,c,dummy
//cc;31/1;obj.;0;nickname,yell,name,getSomeDate,test,hasOwnProperty,getLiteral;nickname;nickname;conquer,dummy,origin
// FUNC
//cc;36/1;func().a.;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;conquer,yell,c
//cc;38/1;func().b.;0;c,hasOwnProperty;c;c;yell,a
// NEWFUNC
//cc;41/1;newFunc.conquer().;0;push,pop,hasOwnProperty;pop;pop;getDate
//cc;43/1;newFunc.getBirthDate().;0;hasOwnProperty,getDate,getDay,setDate;setHours;setHours;push,pop
//cc;45/1;newFunc.getWannabeDate().;0;hasOwnProperty,getDate,getDay,setDate;setHours;setHours;push,pop
//cc;47/1;newFunc.getStuff().;0;a,b,c,hasOwnProperty;a;a;push,pop,getDate
//cc;49/1;newFunc.getStuff().b.;0;getDate,getDay,setDate,hasOwnProperty;getDate;getDate;push,pop,c
//cc;51/1;newFunc.getStuff().c().;0;x,hasOwnProperty;x;x;push,pop,c,getDate
//cc;53/1;newFunc.birth.;0;hasOwnProperty,getDate,getDay,setDate;setHours;setHours;push,pop
//cc;55/1;newFunc.anatomy.;0;hasOwnProperty,legs,eyes,heads;heads;heads;push,pop,c,birth,getDate
//cc;57/1;newFunc.anatomy.heads.;0;hasOwnProperty,leftOnes,rightOnes;leftOnes;leftOnes;push,pop,c,birth,getDate,eyes
// OBJ
//cc;60/1;obj.getSomeDate().;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;getLiteral,nickname
//cc;62/1;obj.getLiteral().;0;propX,propY,hasOwnProperty;propX;propX;getLiteral,nickname,getDate,push
//cc;64/1;obj.getLiteral().propY.;0;a,hasOwnProperty;a;a;getLiteral,nickname,getDate,push
//cc;66/1;obj.getLiteral().propY.a.;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;getLiteral,nickname
//cc;68/1;obj.test.;0;ale,ale2,hasOwnProperty;ale;ale;getLiteral,nickname
//cc;70/1;obj.test.ale.;0;aa,hasOwnProperty;aa;aa;getLiteral,nickname
//cc;72/1;obj.test.ale2.;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;getLiteral,nickname
// STDMODULE
//cc;76/1;stdModule.getSomeDate().;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;getLiteral,nickname,pop
//cc;78/1;stdModule.logIt.;0;a,b,c,hasOwnProperty;a;a;getLiteral,nickname,pop
//cc;80/1;stdModule.logIt.b.;0;pop,push,hasOwnProperty;pop;pop;getLiteral,nickname,getDate
//cc;82/1;stdModule.logIt.c.;0;getDate,getYear,getDay,hasOwnProperty;getDate;getDate;getLiteral,nickname,pop
//cc;84/1;stdModule.dummy().;0;push,pop,hasOwnProperty;pop;pop;getDate
//cc;86/1;stdModule.dummy2.;0;hasOwnProperty,legs,eyes,heads;heads;heads;push,pop,c,birth,getDate
//cc;88/1;stdModule.dummy2.heads.;0;hasOwnProperty,leftOnes,rightOnes;leftOnes;leftOnes;push,pop,c,birth,getDate,eyes
});
|