correctly parse tag in the beginning of doc comment
This commit is contained in:
@@ -0,0 +1 @@
|
||||
/** @param a this is a */
|
||||
@@ -0,0 +1,14 @@
|
||||
JetFile: ParamTagAtStart.kt
|
||||
PACKAGE_DIRECTIVE
|
||||
<empty list>
|
||||
KDoc
|
||||
PsiElement(KDOC_START)('/**')
|
||||
KDOC_SECTION
|
||||
PsiElement(KDOC_TEXT)(' ')
|
||||
KDOC_TAG
|
||||
PsiElement(KDOC_TAG_NAME)('@param')
|
||||
PsiWhiteSpace(' ')
|
||||
KDOC_LINK
|
||||
PsiElement(KDOC_TEXT_OR_LINK)('a')
|
||||
PsiElement(KDOC_TEXT)(' this is a ')
|
||||
PsiElement(KDOC_END)('*/')
|
||||
Reference in New Issue
Block a user