我正在使用OCaml为Scheme的子集构建递归下降解析器。这是语法:
S -> a|b|c|(T)
T -> ST | Epsilon
所以说我有:
type expr =
Num of int | String of string | Tuple of expr * expr
伪代码
这些函数必须返回expr类型才能构建AST
parseS lr =
if head matches '(' then
parseL lr
else
match tokens a, b, or c
使用第一组S作为标记和'(':
parseL lr =
if head matches '(' or the tokens then
Tuple (parseS lr, parseL lr)
else
match Epsilon
我的问题是“我怎么回复Epsilon部分,因为我无法返回()?”。 OCaml函数需要相同的返回类型,即使我为Epsilon部分留空,OCaml仍然采用单位类型。