This is an automated email from the ASF dual-hosted git repository.

tmysik pushed a change to branch php80-support
in repository https://gitbox.apache.org/repos/asf/netbeans.git.


    from f579054  Merge pull request #2295 from 
junichi11/php80-class-name-literal-on-object
     new 84f3520  [NETBEANS-4443] PHP 8.0 Support: Match expression v2 (Part 1)
     new 1548472  [NETBEANS-4443] PHP 8.0 Support: Match expression v2 (Part 2)
     new bcdddfa  Merge pull request #2303 from 
junichi11/php80-match-expression-v2

The 4181 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../modules/php/editor/PHPBracesMatcher.java       |    2 +-
 .../editor/completion/CompletionContextFinder.java |   28 +-
 .../php/editor/completion/PHPCodeCompletion.java   |   31 +-
 .../php/editor/completion/PHPCompletionItem.java   |    3 +-
 .../modules/php/editor/csl/FoldingScanner.java     |    8 +
 .../modules/php/editor/indent/CodeStyle.java       |   17 +
 .../modules/php/editor/indent/FmtOptions.java      |    8 +
 .../modules/php/editor/indent/FormatToken.java     |    8 +-
 .../modules/php/editor/indent/FormatVisitor.java   |   90 +-
 .../php/editor/indent/IndentationCounter.java      |  111 +-
 .../modules/php/editor/indent/TokenFormatter.java  |   34 +-
 .../modules/php/editor/indent/ui/Bundle.properties |    8 +
 .../modules/php/editor/indent/ui/FmtBraces.form    |   61 +-
 .../modules/php/editor/indent/ui/FmtBraces.java    |  425 +-
 .../modules/php/editor/indent/ui/FmtSpaces.form    |    2 +-
 .../modules/php/editor/indent/ui/FmtSpaces.java    |   54 +-
 .../modules/php/editor/indent/ui/Spaces.php        |   13 +
 .../php/editor/lexer/PHP5ColoringLexer.java        | 2401 +++---
 .../modules/php/editor/lexer/PHPTokenId.java       |    1 +
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 5732 +++++++-------
 .../modules/php/editor/parser/ASTPHP5Scanner.java  | 2352 +++---
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |  273 +-
 .../php/editor/parser/EncodedActionTable1.java     | 8316 ++++++++++----------
 .../php/editor/parser/EncodedActionTable10.java    | 6316 +++++++--------
 .../php/editor/parser/EncodedActionTable11.java    | 5854 +++++++-------
 .../php/editor/parser/EncodedActionTable12.java    | 6154 +++++++--------
 .../php/editor/parser/EncodedActionTable13.java    | 5824 +++++++-------
 .../php/editor/parser/EncodedActionTable14.java    | 5475 +++++++------
 .../php/editor/parser/EncodedActionTable15.java    |  824 ++
 .../php/editor/parser/EncodedActionTable2.java     | 7528 +++++++++---------
 .../php/editor/parser/EncodedActionTable3.java     | 6214 +++++++--------
 .../php/editor/parser/EncodedActionTable4.java     | 7120 ++++++++---------
 .../php/editor/parser/EncodedActionTable5.java     | 7044 ++++++++---------
 .../php/editor/parser/EncodedActionTable6.java     | 6374 +++++++--------
 .../php/editor/parser/EncodedActionTable7.java     | 5914 +++++++-------
 .../php/editor/parser/EncodedActionTable8.java     | 6248 +++++++--------
 .../php/editor/parser/EncodedActionTable9.java     | 6016 +++++++-------
 .../netbeans/modules/php/editor/parser/Utils.java  |    3 +
 .../php/editor/parser/astnodes/MatchArm.java       |   82 +
 .../editor/parser/astnodes/MatchExpression.java    |  102 +
 .../php/editor/parser/astnodes/Visitor.java        |    4 +
 .../astnodes/visitors/DefaultTreePathVisitor.java  |   16 +
 .../parser/astnodes/visitors/DefaultVisitor.java   |   14 +
 .../php/editor/resources/code-templates.xml        |    9 +
 .../typinghooks/PhpTypedBreakInterceptor.java      |   65 +-
 .../editor/verification/PHP80UnhandledError.java   |   28 +
 .../editor/verification/UnusedVariableHint.java    |   12 +
 .../lexer/php80/matchExpression_01.pass            |  291 +
 .../lexer/php80/matchExpression_02.pass            |   82 +
 .../lexer/php80/matchExpression_03.pass            |   66 +
 .../lexer/php80/matchExpression_04.pass            |  257 +
 .../ASTPHP5ParserTest/parser/TextSearchQuery.pass  |    6 +-
 .../parser/php80/matchExpressionError_01.pass      |  146 +
 .../parser/php80/matchExpressionError_02.pass      |   42 +
 .../parser/php80/matchExpressionError_03.pass      |   97 +
 .../parser/php80/matchExpressionError_04.pass      |   94 +
 .../parser/php80/matchExpressionError_05.pass      |   84 +
 .../parser/php80/matchExpressionError_06.pass      |   87 +
 .../parser/php80/matchExpression_01.pass           |  856 ++
 .../parser/php80/matchExpression_02.pass           |  213 +
 .../parser/php80/matchExpression_03.pass           |  186 +
 .../parser/php80/matchExpression_04.pass           |  817 ++
 .../parser/php80/matchExpression_05.pass           |  219 +
 .../php80/matchExpression_01.php}                  |   26 +-
 ...tFindContextForMatchExpression_01.bracecontext} |   26 +-
 .../php80/matchExpression_02.php}                  |   30 +-
 ...FindContextForMatchExpression_02a.bracecontext} |   30 +-
 ...FindContextForMatchExpression_02b.bracecontext} |   30 +-
 .../php80/matchExpression_03.php}                  |   26 +-
 ...tFindContextForMatchExpression_03.bracecontext} |   26 +-
 .../bracematching/php80/matchExpression_04.php     |   56 +
 ...stFindContextForMatchExpression_04.bracecontext |   56 +
 .../issue153707.php.testIssue153707_01.completion  |    1 +
 .../issue153867.php.testIssue153867.completion     |    1 +
 ...p.testCompleteAccessPrefixInTrait_01.completion |    1 +
 ...1855.php.testCompleteAccessPrefix_01.completion |    1 +
 ...aramdecltypes.php.testParamDeclTypes.completion |    1 +
 ...ousClass02.php.testAnonymousClass02a.completion |    1 +
 ...ousClass02.php.testAnonymousClass02d.completion |    1 +
 ...ousClass02.php.testAnonymousClass02e.completion |    1 +
 ....testMultiCatch_FullyQualifiedName05.completion |    1 +
 ...iCatch_FullyQualifiedNameWithoutWS05.completion |    1 +
 ...php.testMultiCatch_UnqualifiedName03.completion |    1 +
 ...ultiCatch_UnqualifiedNameWithoutWS03.completion |    1 +
 ...wFunctions.php.testArrowFunctions_02.completion |    1 +
 ...Functions.php.testArrowFunctions_05b.completion |    1 +
 ...wFunctions.php.testArrowFunctions_08.completion |    1 +
 ...Functions.php.testArrowFunctions_15a.completion |    1 +
 ...Functions.php.testArrowFunctions_17d.completion |    1 +
 ...Functions.php.testArrowFunctions_18c.completion |    1 +
 ...Functions.php.testArrowFunctions_21b.completion |    1 +
 ...Functions.php.testArrowFunctions_24b.completion |    1 +
 ...php.testArrowFunctionsInFunction_01a.completion |    1 +
 ...rrowFunctionsInFunctionWithError_01a.completion |    1 +
 ...rrowFunctionsInFunctionWithError_02a.completion |    1 +
 ...rrowFunctionsInFunctionWithError_03a.completion |    1 +
 ...d.php.testArrowFunctionsInMethod_01a.completion |    1 +
 ...tArrowFunctionsInMethodWithError_01a.completion |    1 +
 ...tArrowFunctionsInMethodWithError_02a.completion |    1 +
 ...sted.php.testArrowFunctionsNested_01.completion |    1 +
 ...hp.testArrowFunctionsWithError01_01a.completion |    1 +
 ...hp.testArrowFunctionsWithError01_01b.completion |    1 +
 ...hp.testArrowFunctionsWithError02_01a.completion |    1 +
 ...hp.testArrowFunctionsWithError02_01b.completion |    1 +
 ...php.testArrowFunctionsWithError02_03.completion |    1 +
 ...stSpreadOperatorInArrayExpression_02.completion |    1 +
 ...tSpreadOperatorInArrayExpression_02a.completion |    1 +
 ...stSpreadOperatorInArrayExpression_03.completion |    1 +
 ...stSpreadOperatorInArrayExpression_04.completion |    1 +
 .../matchExpressionInClass.php                     |   62 +
 ...s.php.testMatchExpressionInClass_01.completion} |   61 +-
 ...s.php.testMatchExpressionInClass_02.completion} |   61 +-
 ...ss.php.testMatchExpressionInClass_03.completion |   10 +
 ...s.php.testMatchExpressionInClass_04.completion} |   61 +-
 ...ss.php.testMatchExpressionInClass_05.completion |   10 +
 ...ss.php.testMatchExpressionInClass_06.completion |    4 +
 ...ss.php.testMatchExpressionInClass_07.completion |    8 +
 ...s.php.testMatchExpressionInClass_08.completion} |   61 +-
 .../matchExpressionInClassSimple01.php}            |   40 +-
 ....testMatchExpressionInClassSimple01.completion} |   61 +-
 .../matchExpressionInClassSimple02.php}            |   42 +-
 ....testMatchExpressionInClassSimple02.completion} |   62 +-
 .../matchExpressionInClassSimple03.php}            |   42 +-
 ....testMatchExpressionInClassSimple03.completion} |   61 +-
 .../matchExpressionSimple01.php                    |    3 +
 ...le01.php.testMatchExpressionSimple01.completion |    5 +
 .../matchExpressionSimple02.php                    |    8 +
 ...e02.php.testMatchExpressionSimple02.completion} |   48 +-
 .../matchExpressionSimple03.php                    |   11 +
 ...e03.php.testMatchExpressionSimple03.completion} |   50 +-
 .../matchExpressionSimple04.php                    |   11 +
 ...e04.php.testMatchExpressionSimple04.completion} |   49 +-
 .../matchExpressionSimple05.php                    |   20 +
 ....php.testMatchExpressionSimple05_01.completion} |   49 +-
 ...5.php.testMatchExpressionSimple05_02.completion |    4 +
 ...5.php.testMatchExpressionSimple05_03.completion |    4 +
 .../matchExpressionSimple06.php                    |   13 +
 ...le06.php.testMatchExpressionSimple06.completion |    4 +
 .../test207188.php.testUseCase2.completion         |    1 +
 .../issue233938.php.testUseCase1.completion        |    1 +
 .../issue235450.php.testLowercase_01.completion    |    1 +
 .../issue247082.php.testForKeywords.completion     |    1 +
 .../issue257088.php.testClassKeywords.completion   |    1 +
 ...ssue268332.php.testAnonymousFunction.completion |    1 +
 .../unit/data/testfiles/foldingMatch_01.php.folds  |   73 +
 .../unit/data/testfiles/foldingMatch_02.php.folds  |   35 +
 .../unit/data/testfiles/foldingMatch_03.php.folds  |   57 +
 .../php80/matchExpression_NewLineIndented_01.php   |  152 +
 ...atchExpression_NewLineIndented_01.php.formatted |  164 +
 .../php80/matchExpression_NewLineIndented_02.php}  |   38 +-
 ...tchExpression_NewLineIndented_02.php.formatted} |   46 +-
 .../php80/matchExpression_NewLine_01.php           |  161 +
 .../php80/matchExpression_NewLine_01.php.formatted |  174 +
 .../php80/matchExpression_NewLine_02.php}          |   38 +-
 .../matchExpression_NewLine_02.php.formatted}      |   46 +-
 .../php80/matchExpression_PreserveExisting_01.php  |  152 +
 ...tchExpression_PreserveExisting_01.php.formatted |  153 +
 .../php80/matchExpression_PreserveExisting_02.php} |   44 +-
 ...chExpression_PreserveExisting_02.php.formatted} |   44 +-
 .../php80/matchExpression_SameLine_01.php          |  152 +
 .../matchExpression_SameLine_01.php.formatted      |  150 +
 .../php80/matchExpression_SameLine_02.php}         |   38 +-
 .../matchExpression_SameLine_02.php.formatted}     |   42 +-
 .../spaces/php80/spaceBeforeMatchLeftBrace_01.php  |  161 +
 .../spaceBeforeMatchLeftBrace_01.php.formatted     |  159 +
 .../spaces/php80/spaceBeforeMatchLeftBrace_02.php  |  161 +
 .../spaceBeforeMatchLeftBrace_02.php.formatted     |  159 +
 .../spaces/php80/spaceBeforeMatchParen_01.php      |  161 +
 .../php80/spaceBeforeMatchParen_01.php.formatted   |  159 +
 .../spaces/php80/spaceBeforeMatchParen_02.php      |  161 +
 .../php80/spaceBeforeMatchParen_02.php.formatted   |  159 +
 .../spaces/php80/spaceWithinMatchParen_01.php      |  161 +
 .../php80/spaceWithinMatchParen_01.php.formatted   |  159 +
 .../spaces/php80/spaceWithinMatchParen_02.php      |  161 +
 .../php80/spaceWithinMatchParen_02.php.formatted   |  159 +
 .../testMatchExpression/testMatchExpression.php    |   63 +
 .../testNonCapturingCatches.php                    |    0
 .../php80/matchExpression_01.php}                  |   21 +-
 .../php80/matchExpression_01.php.indented}         |   23 +-
 .../php80/matchExpression_02.php}                  |   22 +-
 .../php80/matchExpression_02.php.indented}         |   23 +-
 .../php80/matchExpression_03.php}                  |   23 +-
 .../php80/matchExpression_03.php.indented}         |   24 +-
 .../php80/matchExpression_04.php}                  |   23 +-
 .../php80/matchExpression_04.php.indented}         |   24 +-
 .../php80/matchExpression_05.php}                  |   24 +-
 .../php80/matchExpression_05.php.indented}         |   25 +-
 .../php80/matchExpression_06.php}                  |   24 +-
 .../php80/matchExpression_06.php.indented}         |   25 +-
 .../php80/matchExpression_07.php}                  |   24 +-
 .../php80/matchExpression_07.php.indented}         |   25 +-
 .../php80/matchExpression_08.php}                  |   24 +-
 .../php80/matchExpression_08.php.indented}         |   25 +-
 .../php80/matchExpression_09.php}                  |   24 +-
 .../php80/matchExpression_09.php.indented}         |   25 +-
 .../php80/matchExpression_10.php}                  |   24 +-
 .../php80/matchExpression_10.php.indented}         |   25 +-
 .../php80/matchExpression_11.php}                  |   23 +-
 .../php80/matchExpression_11.php.indented}         |   25 +-
 .../php80/matchExpression_12.php}                  |   24 +-
 .../php80/matchExpression_12.php.indented}         |   25 +-
 .../php80/matchExpression_01.php}                  |   72 +-
 .../php80/matchExpression_02.php}                  |   30 +-
 .../php80/matchExpression_03.php}                  |   26 +-
 .../testfiles/lexer/php80/matchExpression_04.php   |   56 +
 .../testMatchExpression/testMatchExpression.php    |   63 +
 .../testNonCapturingCatches.php                    |    0
 .../foldingMatch_01.php}                           |   74 +-
 .../foldingMatch_02.php}                           |   30 +-
 .../unit/data/testfiles/parser/foldingMatch_03.php |   56 +
 .../php80/matchExpressionError_01.php}             |   25 +-
 .../php80/matchExpressionError_01.php.errors       |    7 +
 .../php80/matchExpressionError_02.php}             |   21 +-
 .../php80/matchExpressionError_02.php.errors       |   11 +
 .../php80/matchExpressionError_03.php}             |   24 +-
 .../php80/matchExpressionError_03.php.errors       |    7 +
 .../php80/matchExpressionError_04.php}             |   24 +-
 .../php80/matchExpressionError_04.php.errors       |   10 +
 .../php80/matchExpressionError_05.php}             |   24 +-
 .../php80/matchExpressionError_05.php.errors       |    7 +
 .../php80/matchExpressionError_06.php}             |   24 +-
 .../php80/matchExpressionError_06.php.errors       |    7 +
 .../php80/matchExpression_01.php}                  |   72 +-
 .../parser/php80/matchExpression_01.php.errors}    |    0
 .../php80/matchExpression_02.php}                  |   30 +-
 .../parser/php80/matchExpression_02.php.errors}    |    0
 .../php80/matchExpression_03.php}                  |   26 +-
 .../parser/php80/matchExpression_03.php.errors}    |    0
 .../testfiles/parser/php80/matchExpression_04.php  |   56 +
 .../parser/php80/matchExpression_04.php.errors}    |    0
 .../php80/matchExpression_05.php}                  |   27 +-
 .../parser/php80/matchExpression_05.php.errors}    |    0
 ...ression.php.testMatchExpression_01a.occurrences |    7 +
 ...ression.php.testMatchExpression_01b.occurrences |    7 +
 ...ression.php.testMatchExpression_01c.occurrences |    7 +
 ...ression.php.testMatchExpression_01d.occurrences |    7 +
 ...ression.php.testMatchExpression_01e.occurrences |    7 +
 ...ression.php.testMatchExpression_01f.occurrences |    7 +
 ...ression.php.testMatchExpression_01g.occurrences |    7 +
 ...ression.php.testMatchExpression_01h.occurrences |    7 +
 ...ression.php.testMatchExpression_02a.occurrences |    2 +
 ...ression.php.testMatchExpression_02b.occurrences |    2 +
 ...ression.php.testMatchExpression_03a.occurrences |    2 +
 ...ression.php.testMatchExpression_03b.occurrences |    2 +
 ...ression.php.testMatchExpression_04a.occurrences |    2 +
 ...ression.php.testMatchExpression_04b.occurrences |    2 +
 ...ression.php.testMatchExpression_05a.occurrences |    2 +
 ...ression.php.testMatchExpression_05b.occurrences |    2 +
 ...ression.php.testMatchExpression_06a.occurrences |    2 +
 ...ression.php.testMatchExpression_06b.occurrences |    2 +
 ...ression.php.testMatchExpression_07a.occurrences |    3 +
 ...ression.php.testMatchExpression_07b.occurrences |    3 +
 ...ression.php.testMatchExpression_07c.occurrences |    3 +
 ...ression.php.testMatchExpression_08a.occurrences |    2 +
 ...ression.php.testMatchExpression_08b.occurrences |    2 +
 ...ression.php.testMatchExpression_09a.occurrences |    3 +
 ...ression.php.testMatchExpression_09b.occurrences |    3 +
 ...ression.php.testMatchExpression_09c.occurrences |    3 +
 .../UnusedVariableHint/testMatchExpression_01.php} |   29 +-
 ...hExpression_01.php.testMatchExpression_01.hints |    0
 .../modules/php/editor/PHPBracesMatcherTest.java   |   41 +
 .../editor/completion/PHP80CodeCompletionTest.java |   76 +
 .../modules/php/editor/csl/FoldingTest.java        |   13 +
 .../php/editor/csl/GotoDeclarationPHP80Test.java   |   69 +
 .../php/editor/csl/GotoDeclarationTestBase.java    |    8 +-
 .../editor/csl/OccurrencesFinderImplPHP80Test.java |  109 +
 .../editor/csl/OccurrencesFinderImplTestBase.java  |    8 +-
 .../php/editor/indent/PHPFormatterSpacesTest.java  |   37 +
 .../php/editor/indent/PHPFormatterTest.java        |   49 +
 .../php/editor/indent/PHPNewLineIndenterTest.java  |   49 +
 .../PHP80FeaturesTest.java}                        |   22 +-
 .../php/editor/parser/ASTPHP5ParserTest.java       |   46 +
 .../php/editor/parser/PhpParserErrorTest.java      |   46 +
 .../modules/php/editor/parser/PrintASTVisitor.java |   16 +
 .../typinghooks/PhpTypedBreakInterceptorTest.java  |  122 +
 .../verification/UnusedVariableHintTest.java       |    5 +
 php/php.editor/tools/ASTPHP5Parser.cup             |   94 +
 php/php.editor/tools/ASTPHP5Scanner.flex           |    4 +
 php/php.editor/tools/Php5ColoringScanner.flex      |    4 +
 279 files changed, 62328 insertions(+), 51777 deletions(-)
 create mode 100644 
php/php.editor/src/org/netbeans/modules/php/editor/parser/EncodedActionTable15.java
 create mode 100644 
php/php.editor/src/org/netbeans/modules/php/editor/parser/astnodes/MatchArm.java
 create mode 100644 
php/php.editor/src/org/netbeans/modules/php/editor/parser/astnodes/MatchExpression.java
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP80FeaturesTest/lexer/php80/matchExpression_01.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP80FeaturesTest/lexer/php80/matchExpression_02.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP80FeaturesTest/lexer/php80/matchExpression_03.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP80FeaturesTest/lexer/php80/matchExpression_04.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_01.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_02.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_03.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_04.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_05.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpressionError_06.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpression_01.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpression_02.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpression_03.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpression_04.pass
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/matchExpression_05.pass
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => bracematching/php80/matchExpression_01.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => 
bracematching/php80/matchExpression_01.php.testFindContextForMatchExpression_01.bracecontext}
 (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => bracematching/php80/matchExpression_02.php} (73%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => 
bracematching/php80/matchExpression_02.php.testFindContextForMatchExpression_02a.bracecontext}
 (73%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => 
bracematching/php80/matchExpression_02.php.testFindContextForMatchExpression_02b.bracecontext}
 (73%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => bracematching/php80/matchExpression_03.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => 
bracematching/php80/matchExpression_03.php.testFindContextForMatchExpression_03.bracecontext}
 (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/bracematching/php80/matchExpression_04.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/bracematching/php80/matchExpression_04.php.testFindContextForMatchExpression_04.bracecontext
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionInClass/matchExpressionInClass.php
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_01.completion}
 (54%)
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_02.completion}
 (54%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_03.completion
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_04.completion}
 (54%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_05.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_06.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_07.completion
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClass/matchExpressionInClass.php.testMatchExpressionInClass_08.completion}
 (54%)
 copy 
php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/csl/GotoDeclarationPHP80Test.java
 => 
data/testfiles/completion/lib/php80/testMatchExpressionInClassSimple01/matchExpressionInClassSimple01.php}
 (52%)
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClassSimple01/matchExpressionInClassSimple01.php.testMatchExpressionInClassSimple01.completion}
 (54%)
 copy 
php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/csl/GotoDeclarationPHP80Test.java
 => 
data/testfiles/completion/lib/php80/testMatchExpressionInClassSimple02/matchExpressionInClassSimple02.php}
 (51%)
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClassSimple02/matchExpressionInClassSimple02.php.testMatchExpressionInClassSimple02.completion}
 (54%)
 copy 
php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/csl/GotoDeclarationPHP80Test.java
 => 
data/testfiles/completion/lib/php80/testMatchExpressionInClassSimple03/matchExpressionInClassSimple03.php}
 (50%)
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{tests257088/issue257088.php.testClassKeywords.completion
 => 
php80/testMatchExpressionInClassSimple03/matchExpressionInClassSimple03.php.testMatchExpressionInClassSimple03.completion}
 (54%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple01/matchExpressionSimple01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple01/matchExpressionSimple01.php.testMatchExpressionSimple01.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple02/matchExpressionSimple02.php
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{test233938/issue233938.php.testUseCase1.completion
 => 
php80/testMatchExpressionSimple02/matchExpressionSimple02.php.testMatchExpressionSimple02.completion}
 (52%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple03/matchExpressionSimple03.php
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{test233938/issue233938.php.testUseCase1.completion
 => 
php80/testMatchExpressionSimple03/matchExpressionSimple03.php.testMatchExpressionSimple03.completion}
 (52%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple04/matchExpressionSimple04.php
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{test233938/issue233938.php.testUseCase1.completion
 => 
php80/testMatchExpressionSimple04/matchExpressionSimple04.php.testMatchExpressionSimple04.completion}
 (52%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple05/matchExpressionSimple05.php
 copy 
php/php.editor/test/unit/data/testfiles/completion/lib/{test233938/issue233938.php.testUseCase1.completion
 => 
php80/testMatchExpressionSimple05/matchExpressionSimple05.php.testMatchExpressionSimple05_01.completion}
 (52%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple05/matchExpressionSimple05.php.testMatchExpressionSimple05_02.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple05/matchExpressionSimple05.php.testMatchExpressionSimple05_03.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple06/matchExpressionSimple06.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testMatchExpressionSimple06/matchExpressionSimple06.php.testMatchExpressionSimple06.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/foldingMatch_01.php.folds
 create mode 100644 
php/php.editor/test/unit/data/testfiles/foldingMatch_02.php.folds
 create mode 100644 
php/php.editor/test/unit/data/testfiles/foldingMatch_03.php.folds
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_NewLineIndented_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_NewLineIndented_01.php.formatted
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_NewLineIndented_02.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_NewLineIndented_02.php.formatted} (64%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_NewLine_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_NewLine_01.php.formatted
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_NewLine_02.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_NewLine_02.php.formatted} (65%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_PreserveExisting_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_PreserveExisting_01.php.formatted
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_PreserveExisting_02.php} (69%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_PreserveExisting_02.php.formatted} (65%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_SameLine_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/php80/matchExpression_SameLine_01.php.formatted
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_SameLine_02.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => formatting/php80/matchExpression_SameLine_02.php.formatted} (66%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchLeftBrace_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchLeftBrace_01.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchLeftBrace_02.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchLeftBrace_02.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchParen_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchParen_01.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchParen_02.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceBeforeMatchParen_02.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceWithinMatchParen_01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceWithinMatchParen_01.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceWithinMatchParen_02.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/php80/spaceWithinMatchParen_02.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/gotodeclaration/php80/testMatchExpression/testMatchExpression.php
 copy php/php.editor/test/unit/data/testfiles/gotodeclaration/{ => 
php80}/testNonCapturingCatches/testNonCapturingCatches.php (100%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_01.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_01.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_02.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_02.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_03.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_03.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_04.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_04.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_05.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_05.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_06.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_06.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_07.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_07.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_08.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_08.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_09.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_09.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_10.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_10.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_11.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_11.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_12.php} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => indent/php80/matchExpression_12.php.indented} (72%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => lexer/php80/matchExpression_01.php} (56%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => lexer/php80/matchExpression_02.php} (73%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => lexer/php80/matchExpression_03.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/lexer/php80/matchExpression_04.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/markoccurences/php80/testMatchExpression/testMatchExpression.php
 rename php/php.editor/test/unit/data/testfiles/markoccurences/{ => 
php80}/testNonCapturingCatches/testNonCapturingCatches.php (100%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/foldingMatch_01.php} (55%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/foldingMatch_02.php} (73%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/foldingMatch_03.php
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_01.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_01.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_02.php} (73%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_02.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_03.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_03.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_04.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_04.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_05.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_05.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpressionError_06.php} (72%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpressionError_06.php.errors
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpression_01.php} (56%)
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/matchExpression_01.php.errors} 
(100%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpression_02.php} (73%)
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/matchExpression_02.php.errors} 
(100%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpression_03.php} (72%)
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/matchExpression_03.php.errors} 
(100%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/matchExpression_04.php
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/matchExpression_04.php.errors} 
(100%)
 copy 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => parser/php80/matchExpression_05.php} (72%)
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/matchExpression_05.php.errors} 
(100%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01c.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01d.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01e.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01f.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01g.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_01h.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_02a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_02b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_03a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_03b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_04a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_04b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_05a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_05b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_06a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_06b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_07a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_07b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_07c.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_08a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_08b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_09a.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_09b.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testMatchExpression.php.testMatchExpression_09c.occurrences
 rename 
php/php.editor/test/unit/data/testfiles/{gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 => verification/UnusedVariableHint/testMatchExpression_01.php} (73%)
 copy 
webcommon/web.clientproject/test/qa-functional/data/simpleProject/public_html/refresh.js
 => 
php/php.editor/test/unit/data/testfiles/verification/UnusedVariableHint/testMatchExpression_01.php.testMatchExpression_01.hints
 (100%)
 copy 
php/php.editor/test/unit/src/org/netbeans/modules/php/editor/{csl/GotoDeclarationPHP80Test.java
 => lexer/PHP80FeaturesTest.java} (54%)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to