Fix typehints+var type etc.

This commit is contained in:
Dennis Eichhorn 2017-11-11 16:06:15 +01:00
parent ceee8a41d8
commit cd7a35f1a0

View File

@ -1,22 +0,0 @@
var MathEvaluator = function () {
};
MathEvaluator.prototype.attach = function () {
};
MathEvaluator.prototype.detach = function () {
};
MathEvaluator.prototype.trigger = function (node) {
var value = node.value;
if (!value.slice(0, 1) == '=') {
return;
}
var processor = new MathProcessor();
return processor.parse(value);
};