This website requires JavaScript.
Explore
Help
Register
Sign In
azalea
/
kotlin-fork
Watch
1
Star
0
Fork
0
You've already forked kotlin-fork
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
Replace fold/unfold intentions with a set of specialized ones
Browse Source
...
This commit is contained in:
Alexey Sedunov
2013-04-16 14:33:58 +04:00
parent
9e441b0525
commit
64e578297c
113 changed files
with
972 additions
and
437 deletions
Show all changes
Ignore whitespace when comparing lines
Ignore changes in amount of whitespace
Ignore changes in whitespace at EOL
Download Patch File
Download Diff File
Expand all files
Collapse all files
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/innerIfTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/innerIfTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/innerIfTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/innerIfTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIf.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIf.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIf.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIf.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithAugmentedAssignment.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithAugmentedAssignment.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithAugmentedAssignment.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithAugmentedAssignment.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithShadowedVar.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithShadowedVar.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithUnmatchedAssignmentOps.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithUnmatchedAssignmentOps.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithUnmatchedAssignments.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithUnmatchedAssignments.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithoutElse.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithoutElse.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleIfWithoutTerminatingAssignment.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToAssignment/simpleIfWithoutTerminatingAssignment.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/innerIfTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/innerIfTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/innerIfTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/innerIfTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleIf.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/simpleIf.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleIf.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/simpleIf.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleIfWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/simpleIfWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleIfWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturn/simpleIfWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIf.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIf.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIf.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIf.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIfWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIfWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIfWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIfWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIfWithComments.kt → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIfWithComments.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/asymmetricReturn/simpleIfWithComments.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/ifToReturnAsymmetrically/simpleIfWithComments.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/innerWhenTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/innerWhenTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/innerWhenTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/innerWhenTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhen.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhen.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhen.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhen.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhenWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhenWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhenWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhenWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhenWithShadowedVar.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhenWithShadowedVar.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhenWithUnmatchedAssignments.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhenWithUnmatchedAssignments.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/assignment/simpleWhenWithoutTerminatingAssignment.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToAssignment/simpleWhenWithoutTerminatingAssignment.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/innerWhenTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/innerWhenTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/innerWhenTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/innerWhenTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleWhen.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/simpleWhen.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleWhen.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/simpleWhen.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleWhenWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/simpleWhenWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/folding/return/simpleWhenWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/folding/whenToReturn/simpleWhenWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/innerIfTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/innerIfTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/innerIfTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/innerIfTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/nestedIfs.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/nestedIfs.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/nestedIfs.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/nestedIfs.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIf.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIf.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIf.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIf.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIfWithAugmentedAssignment.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIfWithAugmentedAssignment.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIfWithAugmentedAssignment.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIfWithAugmentedAssignment.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIfWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIfWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIfWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIfWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/assignment/simpleIfWithoutAssignment.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/assignmentToIf/simpleIfWithoutAssignment.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/innerIfTransformed.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/innerIfTransformed.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/innerIfTransformed.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/innerIfTransformed.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/simpleIf.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/simpleIf.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/simpleIf.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/simpleIf.kt.after
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/simpleIfWithBlocks.kt → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/simpleIfWithBlocks.kt
Unescape
Escape
Copy filename
View File
idea/testData/codeInsight/codeTransformations/branched/unfolding/return/simpleIfWithBlocks.kt.after → idea/testData/codeInsight/codeTransformations/branched/unfolding/returnToIf/simpleIfWithBlocks.kt.after
Unescape
Escape
Copy filename
View File
Write
Preview
Loading…
x
Add
Cancel
Save
Reference in New Issue
Repository
azalea/kotlin-fork
Title
Body
Create Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues.
Learn more about blocking a user.
User to block:
Optional note:
The note is not visible to the blocked user.
Cancel
Block