Commit 7065b77b authored by GoshaZotov's avatar GoshaZotov

remove this.value/this.argumentsCurrent from definition formula functions

parent 2bf1c058
...@@ -65,9 +65,7 @@ ...@@ -65,9 +65,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDBCS() { function cDBCS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDBCS.prototype = Object.create(cBaseFunction.prototype); cDBCS.prototype = Object.create(cBaseFunction.prototype);
...@@ -79,9 +77,7 @@ ...@@ -79,9 +77,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFILTERXML() { function cFILTERXML() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFILTERXML.prototype = Object.create(cBaseFunction.prototype); cFILTERXML.prototype = Object.create(cBaseFunction.prototype);
...@@ -93,9 +89,7 @@ ...@@ -93,9 +89,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFORECAST_ETS() { function cFORECAST_ETS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFORECAST_ETS.prototype = Object.create(cBaseFunction.prototype); cFORECAST_ETS.prototype = Object.create(cBaseFunction.prototype);
...@@ -107,9 +101,7 @@ ...@@ -107,9 +101,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFORECAST_ETS_CONFINT() { function cFORECAST_ETS_CONFINT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFORECAST_ETS_CONFINT.prototype = Object.create(cBaseFunction.prototype); cFORECAST_ETS_CONFINT.prototype = Object.create(cBaseFunction.prototype);
...@@ -121,9 +113,7 @@ ...@@ -121,9 +113,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFORECAST_ETS_SEASONALITY() { function cFORECAST_ETS_SEASONALITY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFORECAST_ETS_SEASONALITY.prototype = Object.create(cBaseFunction.prototype); cFORECAST_ETS_SEASONALITY.prototype = Object.create(cBaseFunction.prototype);
...@@ -135,9 +125,7 @@ ...@@ -135,9 +125,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFORECAST_ETS_STAT() { function cFORECAST_ETS_STAT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFORECAST_ETS_STAT.prototype = Object.create(cBaseFunction.prototype); cFORECAST_ETS_STAT.prototype = Object.create(cBaseFunction.prototype);
...@@ -149,9 +137,7 @@ ...@@ -149,9 +137,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cHYPGEOM_DIST() { function cHYPGEOM_DIST() {
this.value = null;
this.argumentsCurrent = 0;
} }
cHYPGEOM_DIST.prototype = Object.create(cBaseFunction.prototype); cHYPGEOM_DIST.prototype = Object.create(cBaseFunction.prototype);
...@@ -163,9 +149,7 @@ ...@@ -163,9 +149,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cMUNIT() { function cMUNIT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMUNIT.prototype = Object.create(cBaseFunction.prototype); cMUNIT.prototype = Object.create(cBaseFunction.prototype);
...@@ -177,9 +161,7 @@ ...@@ -177,9 +161,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cQUERYSTRING() { function cQUERYSTRING() {
this.value = null;
this.argumentsCurrent = 0;
} }
cQUERYSTRING.prototype = Object.create(cBaseFunction.prototype); cQUERYSTRING.prototype = Object.create(cBaseFunction.prototype);
...@@ -191,9 +173,7 @@ ...@@ -191,9 +173,7 @@
* @constructor * @constructor
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cWEBSERVICE() { function cWEBSERVICE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cWEBSERVICE.prototype = Object.create(cBaseFunction.prototype); cWEBSERVICE.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -53,8 +53,6 @@ ...@@ -53,8 +53,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBEKPIMEMBER() { function cCUBEKPIMEMBER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBEKPIMEMBER.prototype = Object.create(cBaseFunction.prototype); cCUBEKPIMEMBER.prototype = Object.create(cBaseFunction.prototype);
...@@ -66,8 +64,6 @@ ...@@ -66,8 +64,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBEMEMBER() { function cCUBEMEMBER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBEMEMBER.prototype = Object.create(cBaseFunction.prototype); cCUBEMEMBER.prototype = Object.create(cBaseFunction.prototype);
...@@ -79,8 +75,6 @@ ...@@ -79,8 +75,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBEMEMBERPROPERTY() { function cCUBEMEMBERPROPERTY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBEMEMBERPROPERTY.prototype = Object.create(cBaseFunction.prototype); cCUBEMEMBERPROPERTY.prototype = Object.create(cBaseFunction.prototype);
...@@ -92,8 +86,6 @@ ...@@ -92,8 +86,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBERANKEDMEMBER() { function cCUBERANKEDMEMBER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBERANKEDMEMBER.prototype = Object.create(cBaseFunction.prototype); cCUBERANKEDMEMBER.prototype = Object.create(cBaseFunction.prototype);
...@@ -105,8 +97,6 @@ ...@@ -105,8 +97,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBESET() { function cCUBESET() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBESET.prototype = Object.create(cBaseFunction.prototype); cCUBESET.prototype = Object.create(cBaseFunction.prototype);
...@@ -118,8 +108,6 @@ ...@@ -118,8 +108,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBESETCOUNT() { function cCUBESETCOUNT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBESETCOUNT.prototype = Object.create(cBaseFunction.prototype); cCUBESETCOUNT.prototype = Object.create(cBaseFunction.prototype);
...@@ -131,8 +119,6 @@ ...@@ -131,8 +119,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCUBEVALUE() { function cCUBEVALUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCUBEVALUE.prototype = Object.create(cBaseFunction.prototype); cCUBEVALUE.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -207,8 +207,6 @@ ...@@ -207,8 +207,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDAVERAGE() { function cDAVERAGE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDAVERAGE.prototype = Object.create(cBaseFunction.prototype); cDAVERAGE.prototype = Object.create(cBaseFunction.prototype);
...@@ -261,8 +259,6 @@ ...@@ -261,8 +259,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDCOUNT() { function cDCOUNT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDCOUNT.prototype = Object.create(cBaseFunction.prototype); cDCOUNT.prototype = Object.create(cBaseFunction.prototype);
...@@ -304,8 +300,6 @@ ...@@ -304,8 +300,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDCOUNTA() { function cDCOUNTA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDCOUNTA.prototype = Object.create(cBaseFunction.prototype); cDCOUNTA.prototype = Object.create(cBaseFunction.prototype);
...@@ -345,8 +339,6 @@ ...@@ -345,8 +339,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDGET() { function cDGET() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDGET.prototype = Object.create(cBaseFunction.prototype); cDGET.prototype = Object.create(cBaseFunction.prototype);
...@@ -387,8 +379,6 @@ ...@@ -387,8 +379,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDMAX() { function cDMAX() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDMAX.prototype = Object.create(cBaseFunction.prototype); cDMAX.prototype = Object.create(cBaseFunction.prototype);
...@@ -430,8 +420,6 @@ ...@@ -430,8 +420,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDMIN() { function cDMIN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDMIN.prototype = Object.create(cBaseFunction.prototype); cDMIN.prototype = Object.create(cBaseFunction.prototype);
...@@ -474,8 +462,6 @@ ...@@ -474,8 +462,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDPRODUCT() { function cDPRODUCT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDPRODUCT.prototype = Object.create(cBaseFunction.prototype); cDPRODUCT.prototype = Object.create(cBaseFunction.prototype);
...@@ -525,8 +511,6 @@ ...@@ -525,8 +511,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDSTDEV() { function cDSTDEV() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDSTDEV.prototype = Object.create(cBaseFunction.prototype); cDSTDEV.prototype = Object.create(cBaseFunction.prototype);
...@@ -584,8 +568,6 @@ ...@@ -584,8 +568,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDSTDEVP() { function cDSTDEVP() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDSTDEVP.prototype = Object.create(cBaseFunction.prototype); cDSTDEVP.prototype = Object.create(cBaseFunction.prototype);
...@@ -644,8 +626,6 @@ ...@@ -644,8 +626,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDSUM() { function cDSUM() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDSUM.prototype = Object.create(cBaseFunction.prototype); cDSUM.prototype = Object.create(cBaseFunction.prototype);
...@@ -691,8 +671,6 @@ ...@@ -691,8 +671,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDVAR() { function cDVAR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDVAR.prototype = Object.create(cBaseFunction.prototype); cDVAR.prototype = Object.create(cBaseFunction.prototype);
...@@ -757,8 +735,6 @@ ...@@ -757,8 +735,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDVARP() { function cDVARP() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDVARP.prototype = Object.create(cBaseFunction.prototype); cDVARP.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -516,8 +516,6 @@ ...@@ -516,8 +516,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDATE() { function cDATE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDATE.prototype = Object.create(cBaseFunction.prototype); cDATE.prototype = Object.create(cBaseFunction.prototype);
...@@ -583,8 +581,6 @@ ...@@ -583,8 +581,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDATEDIF() { function cDATEDIF() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDATEDIF.prototype = Object.create(cBaseFunction.prototype); cDATEDIF.prototype = Object.create(cBaseFunction.prototype);
...@@ -699,8 +695,6 @@ ...@@ -699,8 +695,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDATEVALUE() { function cDATEVALUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDATEVALUE.prototype = Object.create(cBaseFunction.prototype); cDATEVALUE.prototype = Object.create(cBaseFunction.prototype);
...@@ -737,8 +731,6 @@ ...@@ -737,8 +731,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDAY() { function cDAY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDAY.prototype = Object.create(cBaseFunction.prototype); cDAY.prototype = Object.create(cBaseFunction.prototype);
...@@ -805,8 +797,6 @@ ...@@ -805,8 +797,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDAYS() { function cDAYS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDAYS.prototype = Object.create(cBaseFunction.prototype); cDAYS.prototype = Object.create(cBaseFunction.prototype);
...@@ -846,8 +836,6 @@ ...@@ -846,8 +836,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDAYS360() { function cDAYS360() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDAYS360.prototype = Object.create(cBaseFunction.prototype); cDAYS360.prototype = Object.create(cBaseFunction.prototype);
...@@ -910,8 +898,6 @@ ...@@ -910,8 +898,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cEDATE() { function cEDATE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cEDATE.prototype = Object.create(cBaseFunction.prototype); cEDATE.prototype = Object.create(cBaseFunction.prototype);
...@@ -983,8 +969,6 @@ ...@@ -983,8 +969,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cEOMONTH() { function cEOMONTH() {
this.value = null;
this.argumentsCurrent = 0;
} }
cEOMONTH.prototype = Object.create(cBaseFunction.prototype); cEOMONTH.prototype = Object.create(cBaseFunction.prototype);
...@@ -1047,8 +1031,6 @@ ...@@ -1047,8 +1031,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cHOUR() { function cHOUR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cHOUR.prototype = Object.create(cBaseFunction.prototype); cHOUR.prototype = Object.create(cBaseFunction.prototype);
...@@ -1110,8 +1092,6 @@ ...@@ -1110,8 +1092,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISOWEEKNUM() { function cISOWEEKNUM() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISOWEEKNUM.prototype = Object.create(cBaseFunction.prototype); cISOWEEKNUM.prototype = Object.create(cBaseFunction.prototype);
...@@ -1146,8 +1126,6 @@ ...@@ -1146,8 +1126,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cMINUTE() { function cMINUTE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMINUTE.prototype = Object.create(cBaseFunction.prototype); cMINUTE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1208,8 +1186,6 @@ ...@@ -1208,8 +1186,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cMONTH() { function cMONTH() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMONTH.prototype = Object.create(cBaseFunction.prototype); cMONTH.prototype = Object.create(cBaseFunction.prototype);
...@@ -1276,8 +1252,6 @@ ...@@ -1276,8 +1252,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNETWORKDAYS() { function cNETWORKDAYS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNETWORKDAYS.prototype = Object.create(cBaseFunction.prototype); cNETWORKDAYS.prototype = Object.create(cBaseFunction.prototype);
...@@ -1349,8 +1323,6 @@ ...@@ -1349,8 +1323,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNETWORKDAYS_INTL() { function cNETWORKDAYS_INTL() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNETWORKDAYS_INTL.prototype = Object.create(cBaseFunction.prototype); cNETWORKDAYS_INTL.prototype = Object.create(cBaseFunction.prototype);
...@@ -1429,8 +1401,6 @@ ...@@ -1429,8 +1401,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNOW() { function cNOW() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNOW.prototype = Object.create(cBaseFunction.prototype); cNOW.prototype = Object.create(cBaseFunction.prototype);
...@@ -1451,8 +1421,6 @@ ...@@ -1451,8 +1421,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSECOND() { function cSECOND() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSECOND.prototype = Object.create(cBaseFunction.prototype); cSECOND.prototype = Object.create(cBaseFunction.prototype);
...@@ -1513,8 +1481,6 @@ ...@@ -1513,8 +1481,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTIME() { function cTIME() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTIME.prototype = Object.create(cBaseFunction.prototype); cTIME.prototype = Object.create(cBaseFunction.prototype);
...@@ -1570,8 +1536,6 @@ ...@@ -1570,8 +1536,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTIMEVALUE() { function cTIMEVALUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTIMEVALUE.prototype = Object.create(cBaseFunction.prototype); cTIMEVALUE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1609,8 +1573,6 @@ ...@@ -1609,8 +1573,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTODAY() { function cTODAY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTODAY.prototype = Object.create(cBaseFunction.prototype); cTODAY.prototype = Object.create(cBaseFunction.prototype);
...@@ -1629,8 +1591,6 @@ ...@@ -1629,8 +1591,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cWEEKDAY() { function cWEEKDAY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cWEEKDAY.prototype = Object.create(cBaseFunction.prototype); cWEEKDAY.prototype = Object.create(cBaseFunction.prototype);
...@@ -1710,8 +1670,6 @@ ...@@ -1710,8 +1670,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cWEEKNUM() { function cWEEKNUM() {
this.value = null;
this.argumentsCurrent = 0;
} }
cWEEKNUM.prototype = Object.create(cBaseFunction.prototype); cWEEKNUM.prototype = Object.create(cBaseFunction.prototype);
...@@ -1795,8 +1753,6 @@ ...@@ -1795,8 +1753,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cWORKDAY() { function cWORKDAY() {
this.value = null;
this.argumentsCurrent = 0;
} }
cWORKDAY.prototype = Object.create(cBaseFunction.prototype); cWORKDAY.prototype = Object.create(cBaseFunction.prototype);
...@@ -1881,8 +1837,6 @@ ...@@ -1881,8 +1837,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cWORKDAY_INTL() { function cWORKDAY_INTL() {
this.value = null;
this.argumentsCurrent = 0;
} }
cWORKDAY_INTL.prototype = Object.create(cBaseFunction.prototype); cWORKDAY_INTL.prototype = Object.create(cBaseFunction.prototype);
...@@ -1970,8 +1924,6 @@ ...@@ -1970,8 +1924,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cYEAR() { function cYEAR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cYEAR.prototype = Object.create(cBaseFunction.prototype); cYEAR.prototype = Object.create(cBaseFunction.prototype);
...@@ -2031,8 +1983,6 @@ ...@@ -2031,8 +1983,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cYEARFRAC() { function cYEARFRAC() {
this.value = null;
this.argumentsCurrent = 0;
} }
cYEARFRAC.prototype = Object.create(cBaseFunction.prototype); cYEARFRAC.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -60,8 +60,6 @@ ...@@ -60,8 +60,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cERROR_TYPE() { function cERROR_TYPE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cERROR_TYPE.prototype = Object.create(cBaseFunction.prototype); cERROR_TYPE.prototype = Object.create(cBaseFunction.prototype);
...@@ -120,8 +118,6 @@ ...@@ -120,8 +118,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISBLANK() { function cISBLANK() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISBLANK.prototype = Object.create(cBaseFunction.prototype); cISBLANK.prototype = Object.create(cBaseFunction.prototype);
...@@ -148,8 +144,6 @@ ...@@ -148,8 +144,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISERR() { function cISERR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISERR.prototype = Object.create(cBaseFunction.prototype); cISERR.prototype = Object.create(cBaseFunction.prototype);
...@@ -179,8 +173,6 @@ ...@@ -179,8 +173,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISERROR() { function cISERROR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISERROR.prototype = Object.create(cBaseFunction.prototype); cISERROR.prototype = Object.create(cBaseFunction.prototype);
...@@ -210,8 +202,6 @@ ...@@ -210,8 +202,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISEVEN() { function cISEVEN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISEVEN.prototype = Object.create(cBaseFunction.prototype); cISEVEN.prototype = Object.create(cBaseFunction.prototype);
...@@ -246,8 +236,6 @@ ...@@ -246,8 +236,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISFORMULA() { function cISFORMULA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISFORMULA.prototype = Object.create(cBaseFunction.prototype); cISFORMULA.prototype = Object.create(cBaseFunction.prototype);
...@@ -278,8 +266,6 @@ ...@@ -278,8 +266,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISLOGICAL() { function cISLOGICAL() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISLOGICAL.prototype = Object.create(cBaseFunction.prototype); cISLOGICAL.prototype = Object.create(cBaseFunction.prototype);
...@@ -309,8 +295,6 @@ ...@@ -309,8 +295,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISNA() { function cISNA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISNA.prototype = Object.create(cBaseFunction.prototype); cISNA.prototype = Object.create(cBaseFunction.prototype);
...@@ -340,8 +324,6 @@ ...@@ -340,8 +324,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISNONTEXT() { function cISNONTEXT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISNONTEXT.prototype = Object.create(cBaseFunction.prototype); cISNONTEXT.prototype = Object.create(cBaseFunction.prototype);
...@@ -370,8 +352,6 @@ ...@@ -370,8 +352,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISNUMBER() { function cISNUMBER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISNUMBER.prototype = Object.create(cBaseFunction.prototype); cISNUMBER.prototype = Object.create(cBaseFunction.prototype);
...@@ -401,8 +381,6 @@ ...@@ -401,8 +381,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISODD() { function cISODD() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISODD.prototype = Object.create(cBaseFunction.prototype); cISODD.prototype = Object.create(cBaseFunction.prototype);
...@@ -437,8 +415,6 @@ ...@@ -437,8 +415,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISREF() { function cISREF() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISREF.prototype = Object.create(cBaseFunction.prototype); cISREF.prototype = Object.create(cBaseFunction.prototype);
...@@ -460,8 +436,6 @@ ...@@ -460,8 +436,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cISTEXT() { function cISTEXT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cISTEXT.prototype = Object.create(cBaseFunction.prototype); cISTEXT.prototype = Object.create(cBaseFunction.prototype);
...@@ -491,8 +465,6 @@ ...@@ -491,8 +465,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cN() { function cN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cN.prototype = Object.create(cBaseFunction.prototype); cN.prototype = Object.create(cBaseFunction.prototype);
...@@ -536,8 +508,6 @@ ...@@ -536,8 +508,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNA() { function cNA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNA.prototype = Object.create(cBaseFunction.prototype); cNA.prototype = Object.create(cBaseFunction.prototype);
...@@ -553,8 +523,6 @@ ...@@ -553,8 +523,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSHEET() { function cSHEET() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSHEET.prototype = Object.create(cBaseFunction.prototype); cSHEET.prototype = Object.create(cBaseFunction.prototype);
...@@ -601,8 +569,6 @@ ...@@ -601,8 +569,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSHEETS() { function cSHEETS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSHEETS.prototype = Object.create(cBaseFunction.prototype); cSHEETS.prototype = Object.create(cBaseFunction.prototype);
...@@ -645,8 +611,6 @@ ...@@ -645,8 +611,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTYPE() { function cTYPE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTYPE.prototype = Object.create(cBaseFunction.prototype); cTYPE.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -58,8 +58,6 @@ ...@@ -58,8 +58,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cAND() { function cAND() {
this.value = null;
this.argumentsCurrent = 0;
} }
cAND.prototype = Object.create(cBaseFunction.prototype); cAND.prototype = Object.create(cBaseFunction.prototype);
...@@ -131,8 +129,6 @@ ...@@ -131,8 +129,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFALSE() { function cFALSE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFALSE.prototype = Object.create(cBaseFunction.prototype); cFALSE.prototype = Object.create(cBaseFunction.prototype);
...@@ -148,8 +144,6 @@ ...@@ -148,8 +144,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cIF() { function cIF() {
this.value = null;
this.argumentsCurrent = 0;
} }
cIF.prototype = Object.create(cBaseFunction.prototype); cIF.prototype = Object.create(cBaseFunction.prototype);
...@@ -188,8 +182,6 @@ ...@@ -188,8 +182,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cIFERROR() { function cIFERROR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cIFERROR.prototype = Object.create(cBaseFunction.prototype); cIFERROR.prototype = Object.create(cBaseFunction.prototype);
...@@ -221,8 +213,6 @@ ...@@ -221,8 +213,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cIFNA() { function cIFNA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cIFNA.prototype = Object.create(cBaseFunction.prototype); cIFNA.prototype = Object.create(cBaseFunction.prototype);
...@@ -255,8 +245,6 @@ ...@@ -255,8 +245,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cIFS() { function cIFS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cIFS.prototype = Object.create(cBaseFunction.prototype); cIFS.prototype = Object.create(cBaseFunction.prototype);
...@@ -309,8 +297,6 @@ ...@@ -309,8 +297,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNOT() { function cNOT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNOT.prototype = Object.create(cBaseFunction.prototype); cNOT.prototype = Object.create(cBaseFunction.prototype);
...@@ -347,8 +333,6 @@ ...@@ -347,8 +333,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cOR() { function cOR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cOR.prototype = Object.create(cBaseFunction.prototype); cOR.prototype = Object.create(cBaseFunction.prototype);
...@@ -417,8 +401,6 @@ ...@@ -417,8 +401,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSWITCH() { function cSWITCH() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSWITCH.prototype = Object.create(cBaseFunction.prototype); cSWITCH.prototype = Object.create(cBaseFunction.prototype);
...@@ -470,8 +452,6 @@ ...@@ -470,8 +452,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTRUE() { function cTRUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTRUE.prototype = Object.create(cBaseFunction.prototype); cTRUE.prototype = Object.create(cBaseFunction.prototype);
...@@ -487,8 +467,6 @@ ...@@ -487,8 +467,6 @@
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cXOR() { function cXOR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cXOR.prototype = Object.create(cBaseFunction.prototype); cXOR.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -103,8 +103,6 @@ function (window, undefined) { ...@@ -103,8 +103,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cADDRESS() { function cADDRESS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cADDRESS.prototype = Object.create(cBaseFunction.prototype); cADDRESS.prototype = Object.create(cBaseFunction.prototype);
...@@ -217,8 +215,6 @@ function (window, undefined) { ...@@ -217,8 +215,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cAREAS() { function cAREAS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cAREAS.prototype = Object.create(cBaseFunction.prototype); cAREAS.prototype = Object.create(cBaseFunction.prototype);
...@@ -230,8 +226,6 @@ function (window, undefined) { ...@@ -230,8 +226,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCHOOSE() { function cCHOOSE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCHOOSE.prototype = Object.create(cBaseFunction.prototype); cCHOOSE.prototype = Object.create(cBaseFunction.prototype);
...@@ -267,8 +261,6 @@ function (window, undefined) { ...@@ -267,8 +261,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCOLUMN() { function cCOLUMN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCOLUMN.prototype = Object.create(cBaseFunction.prototype); cCOLUMN.prototype = Object.create(cBaseFunction.prototype);
...@@ -295,8 +287,6 @@ function (window, undefined) { ...@@ -295,8 +287,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCOLUMNS() { function cCOLUMNS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCOLUMNS.prototype = Object.create(cBaseFunction.prototype); cCOLUMNS.prototype = Object.create(cBaseFunction.prototype);
...@@ -322,8 +312,6 @@ function (window, undefined) { ...@@ -322,8 +312,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFORMULATEXT() { function cFORMULATEXT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFORMULATEXT.prototype = Object.create(cBaseFunction.prototype); cFORMULATEXT.prototype = Object.create(cBaseFunction.prototype);
...@@ -355,8 +343,6 @@ function (window, undefined) { ...@@ -355,8 +343,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cGETPIVOTDATA() { function cGETPIVOTDATA() {
this.value = null;
this.argumentsCurrent = 0;
} }
cGETPIVOTDATA.prototype = Object.create(cBaseFunction.prototype); cGETPIVOTDATA.prototype = Object.create(cBaseFunction.prototype);
...@@ -368,8 +354,6 @@ function (window, undefined) { ...@@ -368,8 +354,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cHLOOKUP() { function cHLOOKUP() {
this.value = null;
this.argumentsCurrent = 0;
} }
cHLOOKUP.prototype = Object.create(cBaseFunction.prototype); cHLOOKUP.prototype = Object.create(cBaseFunction.prototype);
...@@ -386,8 +370,6 @@ function (window, undefined) { ...@@ -386,8 +370,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cHYPERLINK() { function cHYPERLINK() {
this.value = null;
this.argumentsCurrent = 0;
} }
cHYPERLINK.prototype = Object.create(cBaseFunction.prototype); cHYPERLINK.prototype = Object.create(cBaseFunction.prototype);
...@@ -399,8 +381,6 @@ function (window, undefined) { ...@@ -399,8 +381,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cINDEX() { function cINDEX() {
this.value = null;
this.argumentsCurrent = 0;
} }
cINDEX.prototype = Object.create(cBaseFunction.prototype); cINDEX.prototype = Object.create(cBaseFunction.prototype);
...@@ -477,8 +457,6 @@ function (window, undefined) { ...@@ -477,8 +457,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cINDIRECT() { function cINDIRECT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cINDIRECT.prototype = Object.create(cBaseFunction.prototype); cINDIRECT.prototype = Object.create(cBaseFunction.prototype);
...@@ -552,8 +530,6 @@ function (window, undefined) { ...@@ -552,8 +530,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cLOOKUP() { function cLOOKUP() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLOOKUP.prototype = Object.create(cBaseFunction.prototype); cLOOKUP.prototype = Object.create(cBaseFunction.prototype);
...@@ -701,8 +677,6 @@ function (window, undefined) { ...@@ -701,8 +677,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cMATCH() { function cMATCH() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMATCH.prototype = Object.create(cBaseFunction.prototype); cMATCH.prototype = Object.create(cBaseFunction.prototype);
...@@ -806,8 +780,6 @@ function (window, undefined) { ...@@ -806,8 +780,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cOFFSET() { function cOFFSET() {
this.value = null;
this.argumentsCurrent = 0;
} }
cOFFSET.prototype = Object.create(cBaseFunction.prototype); cOFFSET.prototype = Object.create(cBaseFunction.prototype);
...@@ -883,8 +855,6 @@ function (window, undefined) { ...@@ -883,8 +855,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cROW() { function cROW() {
this.value = null;
this.argumentsCurrent = 0;
} }
cROW.prototype = Object.create(cBaseFunction.prototype); cROW.prototype = Object.create(cBaseFunction.prototype);
...@@ -911,8 +881,6 @@ function (window, undefined) { ...@@ -911,8 +881,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cROWS() { function cROWS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cROWS.prototype = Object.create(cBaseFunction.prototype); cROWS.prototype = Object.create(cBaseFunction.prototype);
...@@ -938,8 +906,6 @@ function (window, undefined) { ...@@ -938,8 +906,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cRTD() { function cRTD() {
this.value = null;
this.argumentsCurrent = 0;
} }
cRTD.prototype = Object.create(cBaseFunction.prototype); cRTD.prototype = Object.create(cBaseFunction.prototype);
...@@ -951,8 +917,6 @@ function (window, undefined) { ...@@ -951,8 +917,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTRANSPOSE() { function cTRANSPOSE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTRANSPOSE.prototype = Object.create(cBaseFunction.prototype); cTRANSPOSE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1184,8 +1148,6 @@ function (window, undefined) { ...@@ -1184,8 +1148,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cVLOOKUP() { function cVLOOKUP() {
this.value = null;
this.argumentsCurrent = 0;
} }
cVLOOKUP.prototype = Object.create(cBaseFunction.prototype); cVLOOKUP.prototype = Object.create(cBaseFunction.prototype);
......
...@@ -70,8 +70,6 @@ function (window, undefined) { ...@@ -70,8 +70,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cASC() { function cASC() {
this.value = null;
this.argumentsCurrent = 0;
} }
cASC.prototype = Object.create(cBaseFunction.prototype); cASC.prototype = Object.create(cBaseFunction.prototype);
...@@ -83,8 +81,6 @@ function (window, undefined) { ...@@ -83,8 +81,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cBAHTTEXT() { function cBAHTTEXT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cBAHTTEXT.prototype = Object.create(cBaseFunction.prototype); cBAHTTEXT.prototype = Object.create(cBaseFunction.prototype);
...@@ -96,8 +92,6 @@ function (window, undefined) { ...@@ -96,8 +92,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCHAR() { function cCHAR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCHAR.prototype = Object.create(cBaseFunction.prototype); cCHAR.prototype = Object.create(cBaseFunction.prototype);
...@@ -141,8 +135,6 @@ function (window, undefined) { ...@@ -141,8 +135,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCLEAN() { function cCLEAN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCLEAN.prototype = Object.create(cBaseFunction.prototype); cCLEAN.prototype = Object.create(cBaseFunction.prototype);
...@@ -178,8 +170,6 @@ function (window, undefined) { ...@@ -178,8 +170,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCODE() { function cCODE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCODE.prototype = Object.create(cBaseFunction.prototype); cCODE.prototype = Object.create(cBaseFunction.prototype);
...@@ -223,8 +213,6 @@ function (window, undefined) { ...@@ -223,8 +213,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCONCATENATE() { function cCONCATENATE() {
this.value = null;
this.argumentsCurrent = 0;
} }
//TODO пересмотреть функцию!!! //TODO пересмотреть функцию!!!
...@@ -268,8 +256,6 @@ function (window, undefined) { ...@@ -268,8 +256,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cCONCAT() { function cCONCAT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cCONCAT.prototype = Object.create(cBaseFunction.prototype); cCONCAT.prototype = Object.create(cBaseFunction.prototype);
...@@ -323,8 +309,6 @@ function (window, undefined) { ...@@ -323,8 +309,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cDOLLAR() { function cDOLLAR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cDOLLAR.prototype = Object.create(cBaseFunction.prototype); cDOLLAR.prototype = Object.create(cBaseFunction.prototype);
...@@ -522,8 +506,6 @@ function (window, undefined) { ...@@ -522,8 +506,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cEXACT() { function cEXACT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cEXACT.prototype = Object.create(cBaseFunction.prototype); cEXACT.prototype = Object.create(cBaseFunction.prototype);
...@@ -568,8 +550,6 @@ function (window, undefined) { ...@@ -568,8 +550,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFIND() { function cFIND() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFIND.prototype = Object.create(cBaseFunction.prototype); cFIND.prototype = Object.create(cBaseFunction.prototype);
...@@ -654,8 +634,6 @@ function (window, undefined) { ...@@ -654,8 +634,6 @@ function (window, undefined) {
* @extends {cFIND} * @extends {cFIND}
*/ */
function cFINDB() { function cFINDB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFINDB.prototype = Object.create(cFIND.prototype); cFINDB.prototype = Object.create(cFIND.prototype);
...@@ -667,8 +645,6 @@ function (window, undefined) { ...@@ -667,8 +645,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cFIXED() { function cFIXED() {
this.value = null;
this.argumentsCurrent = 0;
} }
cFIXED.prototype = Object.create(cBaseFunction.prototype); cFIXED.prototype = Object.create(cBaseFunction.prototype);
...@@ -863,8 +839,6 @@ function (window, undefined) { ...@@ -863,8 +839,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cJIS() { function cJIS() {
this.value = null;
this.argumentsCurrent = 0;
} }
cJIS.prototype = Object.create(cBaseFunction.prototype); cJIS.prototype = Object.create(cBaseFunction.prototype);
...@@ -876,8 +850,6 @@ function (window, undefined) { ...@@ -876,8 +850,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cLEFT() { function cLEFT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLEFT.prototype = Object.create(cBaseFunction.prototype); cLEFT.prototype = Object.create(cBaseFunction.prototype);
...@@ -926,8 +898,6 @@ function (window, undefined) { ...@@ -926,8 +898,6 @@ function (window, undefined) {
* @extends {cLEFT} * @extends {cLEFT}
*/ */
function cLEFTB() { function cLEFTB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLEFTB.prototype = Object.create(cLEFT.prototype); cLEFTB.prototype = Object.create(cLEFT.prototype);
...@@ -939,8 +909,6 @@ function (window, undefined) { ...@@ -939,8 +909,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cLEN() { function cLEN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLEN.prototype = Object.create(cBaseFunction.prototype); cLEN.prototype = Object.create(cBaseFunction.prototype);
...@@ -973,8 +941,6 @@ function (window, undefined) { ...@@ -973,8 +941,6 @@ function (window, undefined) {
* @extends {cLEN} * @extends {cLEN}
*/ */
function cLENB() { function cLENB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLENB.prototype = Object.create(cLEN.prototype); cLENB.prototype = Object.create(cLEN.prototype);
...@@ -986,8 +952,6 @@ function (window, undefined) { ...@@ -986,8 +952,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cLOWER() { function cLOWER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cLOWER.prototype = Object.create(cBaseFunction.prototype); cLOWER.prototype = Object.create(cBaseFunction.prototype);
...@@ -1019,8 +983,6 @@ function (window, undefined) { ...@@ -1019,8 +983,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cMID() { function cMID() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMID.prototype = Object.create(cBaseFunction.prototype); cMID.prototype = Object.create(cBaseFunction.prototype);
...@@ -1089,8 +1051,6 @@ function (window, undefined) { ...@@ -1089,8 +1051,6 @@ function (window, undefined) {
* @extends {cMID} * @extends {cMID}
*/ */
function cMIDB() { function cMIDB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cMIDB.prototype = Object.create(cMID.prototype); cMIDB.prototype = Object.create(cMID.prototype);
...@@ -1102,8 +1062,6 @@ function (window, undefined) { ...@@ -1102,8 +1062,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cNUMBERVALUE() { function cNUMBERVALUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cNUMBERVALUE.prototype = Object.create(cBaseFunction.prototype); cNUMBERVALUE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1229,8 +1187,6 @@ function (window, undefined) { ...@@ -1229,8 +1187,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cPHONETIC() { function cPHONETIC() {
this.value = null;
this.argumentsCurrent = 0;
} }
cPHONETIC.prototype = Object.create(cBaseFunction.prototype); cPHONETIC.prototype = Object.create(cBaseFunction.prototype);
...@@ -1242,8 +1198,6 @@ function (window, undefined) { ...@@ -1242,8 +1198,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cPROPER() { function cPROPER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cPROPER.prototype = Object.create(cBaseFunction.prototype); cPROPER.prototype = Object.create(cBaseFunction.prototype);
...@@ -1308,8 +1262,6 @@ function (window, undefined) { ...@@ -1308,8 +1262,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cREPLACE() { function cREPLACE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cREPLACE.prototype = Object.create(cBaseFunction.prototype); cREPLACE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1386,8 +1338,6 @@ function (window, undefined) { ...@@ -1386,8 +1338,6 @@ function (window, undefined) {
* @extends {cREPLACE} * @extends {cREPLACE}
*/ */
function cREPLACEB() { function cREPLACEB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cREPLACEB.prototype = Object.create(cREPLACE.prototype); cREPLACEB.prototype = Object.create(cREPLACE.prototype);
...@@ -1399,8 +1349,6 @@ function (window, undefined) { ...@@ -1399,8 +1349,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cREPT() { function cREPT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cREPT.prototype = Object.create(cBaseFunction.prototype); cREPT.prototype = Object.create(cBaseFunction.prototype);
...@@ -1461,8 +1409,6 @@ function (window, undefined) { ...@@ -1461,8 +1409,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cRIGHT() { function cRIGHT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cRIGHT.prototype = Object.create(cBaseFunction.prototype); cRIGHT.prototype = Object.create(cBaseFunction.prototype);
...@@ -1511,8 +1457,6 @@ function (window, undefined) { ...@@ -1511,8 +1457,6 @@ function (window, undefined) {
* @extends {cRIGHT} * @extends {cRIGHT}
*/ */
function cRIGHTB() { function cRIGHTB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cRIGHTB.prototype = Object.create(cRIGHT.prototype); cRIGHTB.prototype = Object.create(cRIGHT.prototype);
...@@ -1524,8 +1468,6 @@ function (window, undefined) { ...@@ -1524,8 +1468,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSEARCH() { function cSEARCH() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSEARCH.prototype = Object.create(cBaseFunction.prototype); cSEARCH.prototype = Object.create(cBaseFunction.prototype);
...@@ -1615,8 +1557,6 @@ function (window, undefined) { ...@@ -1615,8 +1557,6 @@ function (window, undefined) {
* @extends {cRIGHT} * @extends {cRIGHT}
*/ */
function cSEARCHB() { function cSEARCHB() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSEARCHB.prototype = Object.create(cSEARCH.prototype); cSEARCHB.prototype = Object.create(cSEARCH.prototype);
...@@ -1628,8 +1568,6 @@ function (window, undefined) { ...@@ -1628,8 +1568,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cSUBSTITUTE() { function cSUBSTITUTE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cSUBSTITUTE.prototype = Object.create(cBaseFunction.prototype); cSUBSTITUTE.prototype = Object.create(cBaseFunction.prototype);
...@@ -1710,8 +1648,6 @@ function (window, undefined) { ...@@ -1710,8 +1648,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cT() { function cT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cT.prototype = Object.create(cBaseFunction.prototype); cT.prototype = Object.create(cBaseFunction.prototype);
...@@ -1743,8 +1679,6 @@ function (window, undefined) { ...@@ -1743,8 +1679,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTEXT() { function cTEXT() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTEXT.prototype = Object.create(cBaseFunction.prototype); cTEXT.prototype = Object.create(cBaseFunction.prototype);
...@@ -1814,8 +1748,6 @@ function (window, undefined) { ...@@ -1814,8 +1748,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTEXTJOIN() { function cTEXTJOIN() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTEXTJOIN.prototype = Object.create(cBaseFunction.prototype); cTEXTJOIN.prototype = Object.create(cBaseFunction.prototype);
...@@ -1901,8 +1833,6 @@ function (window, undefined) { ...@@ -1901,8 +1833,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cTRIM() { function cTRIM() {
this.value = null;
this.argumentsCurrent = 0;
} }
cTRIM.prototype = Object.create(cBaseFunction.prototype); cTRIM.prototype = Object.create(cBaseFunction.prototype);
...@@ -1937,8 +1867,6 @@ function (window, undefined) { ...@@ -1937,8 +1867,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cUNICHAR() { function cUNICHAR() {
this.value = null;
this.argumentsCurrent = 0;
} }
cUNICHAR.prototype = Object.create(cBaseFunction.prototype); cUNICHAR.prototype = Object.create(cBaseFunction.prototype);
...@@ -1981,8 +1909,6 @@ function (window, undefined) { ...@@ -1981,8 +1909,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cUNICODE() { function cUNICODE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cUNICODE.prototype = Object.create(cBaseFunction.prototype); cUNICODE.prototype = Object.create(cBaseFunction.prototype);
...@@ -2016,8 +1942,6 @@ function (window, undefined) { ...@@ -2016,8 +1942,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cUPPER() { function cUPPER() {
this.value = null;
this.argumentsCurrent = 0;
} }
cUPPER.prototype = Object.create(cBaseFunction.prototype); cUPPER.prototype = Object.create(cBaseFunction.prototype);
...@@ -2047,8 +1971,6 @@ function (window, undefined) { ...@@ -2047,8 +1971,6 @@ function (window, undefined) {
* @extends {AscCommonExcel.cBaseFunction} * @extends {AscCommonExcel.cBaseFunction}
*/ */
function cVALUE() { function cVALUE() {
this.value = null;
this.argumentsCurrent = 0;
} }
cVALUE.prototype = Object.create(cBaseFunction.prototype); cVALUE.prototype = Object.create(cBaseFunction.prototype);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment