mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 14:01:44 +07:00
24 lines
743 B
Plaintext
24 lines
743 B
Plaintext
REGEXP_FILE
|
|
RegExpPatternImpl: <abc.*?x+yz>
|
|
RegExpBranchImpl: <abc.*?x+yz>
|
|
RegExpCharImpl: <a>
|
|
PsiElement(CHARACTER)('a')
|
|
RegExpCharImpl: <b>
|
|
PsiElement(CHARACTER)('b')
|
|
RegExpCharImpl: <c>
|
|
PsiElement(CHARACTER)('c')
|
|
RegExpClosureImpl: <.*?>
|
|
RegExpSimpleClassImpl: <.>
|
|
PsiElement(DOT)('.')
|
|
RegExpQuantifierImpl: <*?>
|
|
PsiElement(STAR)('*')
|
|
PsiElement(QUEST)('?')
|
|
RegExpClosureImpl: <x+>
|
|
RegExpCharImpl: <x>
|
|
PsiElement(CHARACTER)('x')
|
|
RegExpQuantifierImpl: <+>
|
|
PsiElement(PLUS)('+')
|
|
RegExpCharImpl: <y>
|
|
PsiElement(CHARACTER)('y')
|
|
RegExpCharImpl: <z>
|
|
PsiElement(CHARACTER)('z') |