-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force collections surrounding non-empty collections to split.
Fix #223. R=kevmoo@google.com Review URL: https://chromiumcodereview.appspot.com//1183623007.
- Loading branch information
1 parent
c131e74
commit 0737dea
Showing
8 changed files
with
145 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
>>> | ||
Foo barBaz() => new Quux({ | ||
'alpha.beta.gamma': [ | ||
new Zuul({'yarrr': Abracadabra.OPEN_SESAME,}, { | ||
'toil': {'trouble': {'fireBurn': {'cauldronBubble': EYE_OF_NEWT,}}} | ||
}) | ||
] | ||
}); | ||
<<< | ||
Foo barBaz() => new Quux({ | ||
'alpha.beta.gamma': [ | ||
new Zuul({ | ||
'yarrr': Abracadabra.OPEN_SESAME, | ||
}, { | ||
'toil': { | ||
'trouble': { | ||
'fireBurn': {'cauldronBubble': EYE_OF_NEWT,} | ||
} | ||
} | ||
}) | ||
] | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters