add @suppress to the list of known KDoc tags
#KT-9415 Fixed
This commit is contained in:
@@ -28,7 +28,8 @@ public enum KDocKnownTag {
|
|||||||
SINCE(false, false),
|
SINCE(false, false),
|
||||||
CONSTRUCTOR(false, true),
|
CONSTRUCTOR(false, true),
|
||||||
PROPERTY(true, true),
|
PROPERTY(true, true),
|
||||||
SAMPLE(true, false);
|
SAMPLE(true, false),
|
||||||
|
SUPPRESS(false, false);
|
||||||
|
|
||||||
private final boolean takesReference;
|
private final boolean takesReference;
|
||||||
private final boolean startsSection;
|
private final boolean startsSection;
|
||||||
|
|||||||
@@ -6,3 +6,4 @@ fun f(x: Int): Int {
|
|||||||
|
|
||||||
// EXIST: @param
|
// EXIST: @param
|
||||||
// EXIST: @return
|
// EXIST: @return
|
||||||
|
// EXIST: @suppress
|
||||||
|
|||||||
Reference in New Issue
Block a user