mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
good code red: allow containing this before super call (IDEA-67756)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
class A
|
||||
{
|
||||
class B
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class C extends A
|
||||
{
|
||||
class D extends B
|
||||
{
|
||||
D(){
|
||||
C.this.super();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -357,4 +357,5 @@ public class LightAdvHighlightingTest extends LightDaemonAnalyzerTestCase {
|
||||
public void testClassicRethrow() throws Exception { doTest(false, false); }
|
||||
public void testRegexp() throws Exception { doTest(false, false); }
|
||||
public void testUnsupportedFeatures() throws Exception { doTest(false, false); }
|
||||
public void testThisBeforeSuper() throws Exception { doTest(false, false); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user