Commit d8fc43c9 authored by GoshaZotov's avatar GoshaZotov

delete unused function

parent 976769a1
......@@ -2692,18 +2692,9 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara
parentLeft.prototype.type = cElementType.operator;
parentLeft.prototype.name = "(";
parentLeft.prototype.argumentsCurrent = 1;
parentLeft.prototype.DecrementArguments = function () {
--this.argumentsCurrent;
};
parentLeft.prototype.IncrementArguments = function () {
++this.argumentsCurrent;
};
parentLeft.prototype.toString = function () {
return this.name;
};
parentLeft.prototype.getArguments = function () {
return this.argumentsCurrent;
};
parentLeft.prototype.Assemble = function (arg) {
return new cString("(" + arg + ")");
};
......
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