Skip to content
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

Don't always break at method calls with prefix #94

Merged
merged 18 commits into from
Dec 4, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix formatting again
dansanduleac committed Dec 4, 2019
commit a86e5b5da5bc9a31c7f461040188d5a4367b0c38
Original file line number Diff line number Diff line change
@@ -668,7 +668,9 @@ public Void visitBreak(BreakTree node, Void unused) {
public Void visitTypeCast(TypeCastTree node, Void unused) {
sync(node);
builder.open(
plusFour, BreakBehaviours.preferBreakingLastInnerLevel(true), LastLevelBreakability.ACCEPT_INLINE_CHAIN);
plusFour,
BreakBehaviours.preferBreakingLastInnerLevel(true),
LastLevelBreakability.ACCEPT_INLINE_CHAIN);
token("(");
scan(node.getType(), null);
token(")");
@@ -681,7 +683,8 @@ public Void visitTypeCast(TypeCastTree node, Void unused) {
@Override
public Void visitNewClass(NewClassTree node, Void unused) {
sync(node);
builder.open(ZERO, BreakBehaviours.preferBreakingLastInnerLevel(true), LastLevelBreakability.ACCEPT_INLINE_CHAIN);
builder.open(
ZERO, BreakBehaviours.preferBreakingLastInnerLevel(true), LastLevelBreakability.ACCEPT_INLINE_CHAIN);
if (node.getEnclosingExpression() != null) {
scan(node.getEnclosingExpression(), null);
builder.breakOp();