From cd7a35f1a0e4ffb55d5196648c832340e0b26db3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 11 Nov 2017 16:06:15 +0100 Subject: [PATCH] Fix typehints+var type etc. --- UI/Input/Math/Evaluator.class.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 UI/Input/Math/Evaluator.class.js 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); -};