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
15a4e054
Commit
15a4e054
authored
8 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
print slot names correctly (i.e. keep casing)
parent
386e923f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Parser/spec/SlotPrinting.jadd
+8
-8
8 additions, 8 deletions
Parser/spec/SlotPrinting.jadd
with
8 additions
and
8 deletions
Parser/spec/SlotPrinting.jadd
+
8
−
8
View file @
15a4e054
...
...
@@ -2,52 +2,52 @@ aspect Printing {
public void SlotExpr.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
}
public void SlotIntLiteralConstant.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
}
public void SlotBlock.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
s.lb();
}
public void SlotVariable.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
}
public void SlotDoConstruct.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
}
public void SlotExecutableConstruct.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
s.lb();
}
public void SlotExecutionPartConstruct.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getSlotName());
s.
literalA
ppend(getSlotName());
s.append("#");
s.lb();
}
public void SlotForName.prettyPrint(PrettyPrinter s) {
s.append("#");
s.
a
ppend(getString());
s.
literalA
ppend(getString());
s.append("#");
}
}
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