protected void reportFunctionBodyMissingLeftBraceProblem()
{
final ICompilerProblem lastError = Iterables.getLast(errors, null);
if (lastError == null || lastError.getLine() < buffer.previous().getLine())
{
final ICompilerProblem problem = new MissingLeftBraceBeforeFunctionBodyProblem(buffer.LT(1));
addProblem(problem);
}
}