-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15ff2cd
commit 7ee19e2
Showing
4 changed files
with
79 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
tests/minimized/src/main/java/minimized/AnnotationParameters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package minimized; | ||
|
||
interface Foo { | ||
@Bar(-1d) | ||
double test(); | ||
|
||
@Bar(~5) | ||
double test2(); | ||
|
||
@BarB(!true) | ||
double test3(); | ||
} | ||
|
||
@interface Bar { | ||
double value(); | ||
} | ||
|
||
@interface BarB { | ||
boolean value(); | ||
} |
38 changes: 38 additions & 0 deletions
38
...hots/src/main/generated/tests/minimized/src/main/java/minimized/AnnotationParameters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package minimized; | ||
|
||
interface Foo { | ||
// ^^^ definition semanticdb maven . . minimized/Foo# | ||
// display_name Foo | ||
// signature_documentation java interface Foo | ||
// kind Interface | ||
@Bar(-1d) | ||
double test(); | ||
|
||
@Bar(~5) | ||
double test2(); | ||
|
||
@BarB(!true) | ||
double test3(); | ||
} | ||
|
||
@interface Bar { | ||
// ^^^ definition semanticdb maven . . minimized/Bar# | ||
// display_name Bar | ||
// signature_documentation java @interface Bar | ||
// kind Interface | ||
// relationship is_implementation semanticdb maven jdk 11 java/lang/annotation/Annotation# | ||
double value(); | ||
} | ||
|
||
@interface BarB { | ||
// ^^^^ definition semanticdb maven . . minimized/BarB# | ||
// display_name BarB | ||
// signature_documentation java @interface BarB | ||
// kind Interface | ||
// relationship is_implementation semanticdb maven jdk 11 java/lang/annotation/Annotation# | ||
boolean value(); | ||
// ^^^^^ definition semanticdb maven . . minimized/BarB#value(). | ||
// display_name value | ||
// signature_documentation java public abstract boolean value() | ||
// kind AbstractMethod | ||
} |