buildBody method
Builds a parser function body and returns the source code of the function body.
Implementation
@override
BuildBodyResult buildBody(BuildContext context, bool hasResult) {
final result = _generate(context, hasResult);
if (result != null) {
return result;
}
return Choice(ps).buildBody(context, hasResult);
}