public void Visit(BoundBlock block) { sa.NewLine(); sa.TabPrint("{"); sa.NewLine(); sa.IncreaseIndent(); block.Statements.ToList().ForEach(st => { st.Accept(this); sa.NewLine(); }, st => st.Accept(this)); sa.DecreaseIndent(); sa.NewLine(); sa.TabPrint("}"); sa.NewLine(); }
public void IncreaseIndent() { inner.IncreaseIndent(); }