mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[java-i18n] More uniform call-chain support; fixes property test with parentheses
GitOrigin-RevId: 7f91d71dd6e87771165b35a33f322533f64a49ca
This commit is contained in:
committed by
intellij-monorepo-bot
parent
61c4068c0a
commit
a0f9fd146b
+13
@@ -0,0 +1,13 @@
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
|
||||
// "Annotate method 'test' as @NonNls" "true"
|
||||
class Foo {
|
||||
@NonNls
|
||||
Foo test(String s) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public boolean doTest() {
|
||||
System.out.println((test("Hello")).toString());
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Annotate method 'test' as @NonNls" "true"
|
||||
class Foo {
|
||||
Foo test(String s) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public boolean doTest() {
|
||||
System.out.println((test("Hel<caret>lo")).toString());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user