Files
openide/plugins/groovy/groovy-psi/resources/inspectionDescriptions/GrAnnotationReferencingUnknownIdentifiers.html
Daniil Ovchinnikov 9698ba64a0 [groovy] inspection descriptions
ChangeToMethod
ChangeToOperator
ClashingGetters
ClashingTraitMethods
DelegatesTo
GrAnnotationReferencingUnknownIdentifiers

GitOrigin-RevId: fd1d8b8e6e6615f1ecc930b85eb77b5f20a7f28a
2021-05-31 17:35:52 +00:00

16 lines
362 B
HTML

<html>
<body>
Reports unresolved identifiers in <code>@TupleConstructor</code> and <code>@MapConstructor</code>
<code>includes</code> and <code>excludes</code> annotation attribute values.
<p><b>Example:</b></p>
<pre><code>
// unresolved 'c'
@TupleConstructor(includes = ['a', 'b', 'c'])
class X {
def a
def b
}
</code></pre>
</body>
</html>