aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/parser.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-03-11 07:36:11 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-03-11 07:36:11 -0500
commitbc3e952b487365fdf5e60e9fcfa0841c23972e30 (patch)
treecc53facc2a62db4dc93a25c772f521786305ead8 /libalee/parser.hpp
parentf8270776e79f4d2edb7c2a19c1ecd3bf3b2bf153 (diff)
common error enum; eval to _ev
Diffstat (limited to 'libalee/parser.hpp')
-rw-r--r--libalee/parser.hpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/libalee/parser.hpp b/libalee/parser.hpp
index f211781..be6f3f7 100644
--- a/libalee/parser.hpp
+++ b/libalee/parser.hpp
@@ -26,14 +26,12 @@
class Parser
{
public:
- constexpr static int UnknownWord = -1;
-
- static int parse(State&, const char *);
- static int parseSource(State&);
+ static Error parse(State&, const char *);
+ static Error parseSource(State&);
private:
- static int parseWord(State&, Word);
- static int parseNumber(State&, Word);
+ static Error parseWord(State&, Word);
+ static Error parseNumber(State&, Word);
};
#endif // ALEEFORTH_PARSER_HPP