From 30ebe2605c05103b2cb9ac448a764950af6c727c Mon Sep 17 00:00:00 2001 From: Dmitry Boulytchev Date: Sun, 25 Feb 2018 19:10:00 +0300 Subject: [PATCH] Added comments --- src/Language.ml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Language.ml b/src/Language.ml index 2d27607a7..fbf8dc998 100644 --- a/src/Language.ml +++ b/src/Language.ml @@ -46,7 +46,12 @@ module Expr = *) let eval _ = failwith "Not implemented yet" - (* Statement parser *) + (* Expression parser. You can use the following terminals: + + IDENT --- a non-empty identifier (a-zA-Z[a-zA-Z0-9_]*) as a string + DECIMAL --- a decimal constant [0-9]+ as a string + + *) ostap ( parse: empty {failwith "Not implemented yet"} )