frontend
frontend copied to clipboard
CSE machine: avoid creating implit block if it's not needed
Example:
1; 2;
should produce in the CSE machine:
1; 2;
and not
{
1; 2;
}