blockFunctionBody abstract method
Returns a newly created function body consisting of a block of
statements. The keyword
can be null
if there is no keyword specified
for the block. The star
can be null
if there is no star following the
keyword (and must be null
if there is no keyword).
Implementation
BlockFunctionBody blockFunctionBody(Token? keyword, Token? star, Block block);