Skip to content
Snippets Groups Projects
Commit 8f9a27bf authored by Johannes Mey's avatar Johannes Mey
Browse files

formatting

parent 0278a13a
No related branches found
No related tags found
No related merge requests found
aspect Printing { aspect Printing {
public void SlotExpr.prettyPrint(PrettyPrinter s) { public void SlotExpr.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
} }
public void SlotIntLiteralConstant.prettyPrint(PrettyPrinter s) { public void SlotIntLiteralConstant.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
} }
public void SlotBlock.prettyPrint(PrettyPrinter s) { public void SlotBlock.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
s.lb(); s.lb();
} }
public void SlotVariable.prettyPrint(PrettyPrinter s) { public void SlotVariable.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
} }
public void SlotDoConstruct.prettyPrint(PrettyPrinter s) { public void SlotDoConstruct.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
} }
public void SlotExecutableConstruct.prettyPrint(PrettyPrinter s) { public void SlotExecutableConstruct.prettyPrint(PrettyPrinter s) {
s.append("#"); s.append("#");
s.append(getSlotName()); s.append(getSlotName());
s.append("#"); s.append("#");
s.lb(); s.lb();
} }
public void SlotExecutionPartConstruct.prettyPrint(PrettyPrinter s) {
s.append("#"); public void SlotExecutionPartConstruct.prettyPrint(PrettyPrinter s) {
s.append(getSlotName()); s.append("#");
s.append("#"); s.append(getSlotName());
s.lb(); s.append("#");
} s.lb();
}
public void SlotForName.prettyPrint(PrettyPrinter s) {
s.append("#"); public void SlotForName.prettyPrint(PrettyPrinter s) {
s.append(getString()); s.append("#");
s.append("#"); s.append(getString());
} s.append("#");
} }
\ No newline at end of file }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment