Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
FortyMcFortface
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Mey
FortyMcFortface
Commits
8f9a27bf
Commit
8f9a27bf
authored
8 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
formatting
parent
0278a13a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Parser/spec/SlotPrinting.jadd
+51
-50
51 additions, 50 deletions
Parser/spec/SlotPrinting.jadd
with
51 additions
and
50 deletions
Parser/spec/SlotPrinting.jadd
+
51
−
50
View file @
8f9a27bf
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
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment