在生成的解析器文件中,这个方法抛出了一个缺少返回语句的异常,虽然我发现返回语句总是可以到达的。这是功能:
Program Goal():
{
MainClass mc;
ClassDecl cd;
ClassDeclList cdl = new ClassDeclList();
}
{
mc = mainClass()
(
cd = ClassDeclaration()
{
cdl.addElement(cd);
}
)* < EOF >
{
return new Program(mc, cdl);
}
}
谢谢。
编辑
所以,问题不在于这种方法,而在于另一种方法。简而言之,问题是在那个方法中,我有一些 ORs ,最后有一个 java return 语句。我应该用一对括号括住所有 ORed 函数调用,但我错过了。
以下是我应该做的。
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;
}
}