lambda: correct control flow for lambda body (IDEA-91061)

This commit is contained in:
Anna Kozlova
2012-09-06 14:59:43 +04:00
parent f4e2b8341b
commit 7a15a26cf2
4 changed files with 59 additions and 0 deletions
@@ -1449,6 +1449,16 @@ class ControlFlowAnalyzer extends JavaElementVisitor {
@Override
public void visitLambdaExpression(PsiLambdaExpression expression) {
startElement(expression);
final PsiElement body = expression.getBody();
if (body != null) {
body.accept(this);
List<PsiVariable> array = new ArrayList<PsiVariable>();
addUsedVariables(array, body);
for (PsiVariable var : array) {
ProgressIndicatorProvider.checkCanceled();
generateReadInstruction(var);
}
}
finishElement(expression);
}
@@ -0,0 +1,23 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public class Test2 {
{
final String p = "hello";
Runnable r = () -> {System.out.println(<caret>p);};
System.out.println(p);
}
}
@@ -0,0 +1,22 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
public class Test2 {
{
Runnable r = () -> {System.out.println("hello");};
System.out.println("hello");
}
}
@@ -154,6 +154,10 @@ public class InlineLocalTest extends LightCodeInsightTestCase {
doTest(true);
}
public void testLocalVarInsideLambdaBody() throws Exception {
doTest(true);
}
private void doTest(final boolean inlineDef, String conflictMessage) throws Exception {
try {
doTest(inlineDef);