在生成的解析器文件中,此方法抛出了一个缺少的return语句异常,尽管我发现return语句总是可以访问的。这是功能:
Program Goal():
{
MainClass mc;
ClassDecl cd;
ClassDeclList cdl = new ClassDeclList();
}
{
mc = mainClass()
(
cd = ClassDeclaration()
{
cdl.addElement(cd);
}
)* < EOF >
{
return new Program(mc, cdl);
}
}
感谢。
修改
因此,问题不在于此方法,而是在另一种方法中。简而言之,问题是在那个方法中,我有一些OR,最后是一个java return语句。 I should have surrounded all the ORed function calls by a pair of parenthesis,但我错过了。
以下是我应该做的。
Exp expression() :
{
Token t;
Exp exp = null;
IntegerLiteral il;
FloatLiteral fl;
CharLiteral cl;
StringLiteral sl;
String s;
Identifier id;
Exp tmpExp = null;
}
{
( // <--- This and its enclosing parenthesis are what I missed.
(
t = < INTEGRAL_LITERAL >
{
il = new IntegerLiteral(Integer.parseInt(t.image));
}
exp = ExpressionBar(il)
)
|
(
t = < FLOAT_LITERAL >
{
fl = new FloatLiteral(Float.parseFloat(t.image));
}
exp = ExpressionBar(fl)
)
|
(
t = < CHAR_LITERAL >
{
cl = new CharLiteral(t.image.charAt(1));
}
exp = ExpressionBar(cl)
)
|
(
t = < STRING_LITERAL >
{
sl = new StringLiteral(t.image);
}
exp = ExpressionBar(sl)
)
)
{
return exp;
}
}