-
Notifications
You must be signed in to change notification settings - Fork 366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regenerate ANTLR sources and rewriteRun #5006
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some suggestions could not be made:
- rewrite-hcl/src/main/java/org/openrewrite/hcl/format/TabsAndIndentsVisitor.java
- lines 255-256
- rewrite-hcl/src/main/java/org/openrewrite/hcl/internal/HclPrinter.java
- lines 363-364
- rewrite-java/src/main/java/org/openrewrite/java/internal/template/AnnotationTemplateGenerator.java
- lines 158-159
- rewrite-java/src/main/java/org/openrewrite/java/internal/template/BlockStatementTemplateGenerator.java
- lines 281-282
- lines 669-669
- rewrite-java/src/main/java/org/openrewrite/java/search/FindEmptyClasses.java
- lines 57-57
- rewrite-xml/src/main/java/org/openrewrite/xml/internal/XmlPrinter.java
- lines 106-106
- rewrite-yaml/src/main/java/org/openrewrite/yaml/cleanup/RemoveUnusedVisitor.java
- lines 76-76
private Stack<CurlyType> leftCurlyStack = new Stack<CurlyType>(); | ||
private Stack<String> heredocIdentifier = new Stack<String>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private Stack<CurlyType> leftCurlyStack = new Stack<CurlyType>(); | |
private Stack<String> heredocIdentifier = new Stack<String>(); | |
private Stack<CurlyType> leftCurlyStack = new Stack<>(); | |
private Stack<String> heredocIdentifier = new Stack<>(); |
@@ -3323,8 +3323,7 @@ public final TemplateInterpolationContext templateInterpolation() throws Recogni | |||
return _localctx; | |||
} | |||
|
|||
@Override | |||
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { | |||
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { | |
@Override | |
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { |
@@ -1505,8 +1505,7 @@ public final IndexesContext indexes() throws RecognitionException { | |||
return _localctx; | |||
} | |||
|
|||
@Override | |||
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { | |||
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { | |
@Override | |
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { |
Not planning to merge. Just checking what current rewrite/licenseFormat combo we apply now.