diff --git a/UI/Input/Math/Evaluator.class.js b/UI/Input/Math/Evaluator.class.js deleted file mode 100644 index 465a063..0000000 --- a/UI/Input/Math/Evaluator.class.js +++ /dev/null @@ -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); -};