File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
kotlin/com/github/tempest/framework/php Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,7 @@ import com.jetbrains.php.lang.psi.elements.Variable
77fun PhpFile.getPhpViewVariables (): Set <Variable > {
88 return PsiTreeUtil .findChildrenOfType(this , Variable ::class .java)
99 .filter { it.useScope == useScope }
10+ .filter { ! it.isDeclaration }
11+ .distinctBy { it.name }
1012 .toSet()
1113}
Original file line number Diff line number Diff line change 1818 <xml .tagNameProvider
1919 implementation =" com.github.tempest.framework.ComponentTagNameProvider" />
2020 <psi .referenceContributor
21+ order =" first"
2122 language =" HTML"
2223 implementation =" com.github.tempest.framework.views.references.ComponentReferenceContributor" />
2324 <spellchecker .bundledDictionaryProvider
You can’t perform that action at this time.
0 commit comments