1010import com .intellij .psi .xml .XmlTokenType ;
1111import com .magento .idea .magento2plugin .magento .files .MftfActionGroup ;
1212import com .magento .idea .magento2plugin .magento .files .MftfTest ;
13- import com .magento .idea .magento2plugin .php .util .PhpRegex ;
1413import com .magento .idea .magento2plugin .reference .provider .*;
1514import com .magento .idea .magento2plugin .reference .provider .mftf .*;
1615import com .magento .idea .magento2plugin .util .RegExUtil ;
17- import com .magento .idea .magento2plugin .util .Regex ;
1816import org .jetbrains .annotations .NotNull ;
1917import static com .intellij .patterns .XmlPatterns .*;
2018
@@ -163,7 +161,7 @@ public void registerReferenceProviders(@NotNull PsiReferenceRegistrar registrar)
163161 // <someXmlTag userInput="{{someValue}}" />
164162 registrar .registerReferenceProvider (
165163 XmlPatterns .xmlAttributeValue ().withValue (
166- string ().matches (Regex .MFTF_CURLY_BRACES )
164+ string ().matches (RegExUtil . Magento .MFTF_CURLY_BRACES )
167165 ).withParent (XmlPatterns .xmlAttribute ().withName (
168166 MftfActionGroup .USER_INPUT_TAG
169167 )),
@@ -175,7 +173,7 @@ public void registerReferenceProviders(@NotNull PsiReferenceRegistrar registrar)
175173 // <someXmlTag url="{{someValue}}" /> in MFTF Tests and ActionGroups
176174 registrar .registerReferenceProvider (
177175 XmlPatterns .xmlAttributeValue ().withValue (
178- string ().matches (Regex .MFTF_CURLY_BRACES )
176+ string ().matches (RegExUtil . Magento .MFTF_CURLY_BRACES )
179177 ).withParent (XmlPatterns .xmlAttribute ().withName (
180178 MftfActionGroup .URL_ATTRIBUTE
181179 ).withParent (XmlPatterns .xmlTag ().withParent (XmlPatterns .xmlTag ().withName (
@@ -187,7 +185,7 @@ public void registerReferenceProviders(@NotNull PsiReferenceRegistrar registrar)
187185 );
188186 registrar .registerReferenceProvider (
189187 XmlPatterns .xmlAttributeValue ().withValue (
190- string ().matches (Regex .MFTF_CURLY_BRACES )
188+ string ().matches (RegExUtil . Magento .MFTF_CURLY_BRACES )
191189 ).withParent (XmlPatterns .xmlAttribute ().withName (
192190 MftfActionGroup .URL_ATTRIBUTE
193191 ).withParent (XmlPatterns .xmlTag ().withParent (XmlPatterns .xmlTag ().withParent (
0 commit comments