Commit 3cf9a390 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Interprêtation des espaces dans les expressions

parent cd7e7a73
Loading
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -305,7 +305,11 @@ class Formule
            }
        }

        if (trim($v) !== '') {
            $this->tw(['type' => 'variable', 'name' => $v], $i, $length);
        }else{
            $this->tw(['type' => 'space', 'value' => $v], $i, $length);
        }

        /* Détection de fonctions */
        $next = $this->t($i + 1);