Implemented HiddenDeclaration annotation (doc-comment to be added!)
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
package test
|
||||
|
||||
@HiddenDeclaration
|
||||
fun hiddenFun(){}
|
||||
|
||||
fun notHiddenFun(){}
|
||||
|
||||
@HiddenDeclaration
|
||||
var hiddenProperty: Int = 1
|
||||
|
||||
var notHiddenProperty: Int = 1
|
||||
|
||||
@HiddenDeclaration
|
||||
val String.hiddenExtension: Int get() = 1
|
||||
Reference in New Issue
Block a user