Make intentions inner classes

This commit is contained in:
Alexey Sedunov
2013-04-17 18:07:43 +04:00
parent fe3d749257
commit 9ae17cfe85
42 changed files with 74 additions and 252 deletions
@@ -0,0 +1,5 @@
res = if (ok) {
"ok"
} else {
"failed"
}
@@ -0,0 +1,5 @@
if (ok) {
res = "ok"
} else {
res = "failed"
}
@@ -0,0 +1,5 @@
<html>
<body>
This intention converts 'if' expression where each branch is terminated with assignment into a single assignment with 'if' expression as a right-hand side
</body>
</html>