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),
|
||||
CONSTRUCTOR(false, true),
|
||||
PROPERTY(true, true),
|
||||
SAMPLE(true, false);
|
||||
SAMPLE(true, false),
|
||||
SUPPRESS(false, false);
|
||||
|
||||
private final boolean takesReference;
|
||||
private final boolean startsSection;
|
||||
|
||||
@@ -6,3 +6,4 @@ fun f(x: Int): Int {
|
||||
|
||||
// EXIST: @param
|
||||
// EXIST: @return
|
||||
// EXIST: @suppress
|
||||
|
||||
Reference in New Issue
Block a user