mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[poincare] Add a comment about the parser's nature
This commit is contained in:
committed by
Émilie Feral
parent
cbf304b342
commit
f6bdc2611e
@@ -1,6 +1,12 @@
|
||||
#ifndef POINCARE_PARSING_PARSER_H
|
||||
#define POINCARE_PARSING_PARSER_H
|
||||
|
||||
/* A precedence-climbing parser is implemented hereafter.
|
||||
* It is a trade-off between
|
||||
* a readable but less efficient recursive-descent parser
|
||||
* and
|
||||
* an efficient but less readable shunting-yard parser. */
|
||||
|
||||
#include "tokenizer.h"
|
||||
|
||||
#include <poincare/addition.h>
|
||||
@@ -15,8 +21,6 @@
|
||||
#include <poincare/store.h>
|
||||
#include <poincare/subtraction.h>
|
||||
#include <poincare/symbol.h>
|
||||
// matrix ? with brackets
|
||||
// braces ?
|
||||
|
||||
namespace Poincare {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user