You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by tm...@apache.org on 2022/04/09 17:18:06 UTC

[netbeans] branch master updated (8e4a0b8677 -> 3863c3d7ec)

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

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


    from 8e4a0b8677 Merge pull request #3930 from sdedic/vscode/remove-defaults
     new bdae9ea4df [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 1)
     new 3a3130e51e [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 2)
     new c81001b7e4 [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 3)
     new 0a5d5fbaee [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 4)
     new 7e2f25f6ab [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 5)
     new a893e4b285 [NETBEANS-5599] PHP 8.1 Support: Enumerations (Part 6)
     new 3863c3d7ec Merge pull request #3940 from junichi11/php81-enumerations

The 6880 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:
 php/php.editor/licenseinfo.xml                     |    1 +
 php/php.editor/nbproject/project.properties        |    2 +-
 .../modules/php/editor/PHPBracesMatcher.java       |    2 +-
 .../php/editor/api/AbstractElementQuery.java       |   11 +
 .../modules/php/editor/api/ElementQuery.java       |   14 +
 .../modules/php/editor/api/FileElementQuery.java   |   23 +
 .../modules/php/editor/api/PhpElementKind.java     |    6 +-
 .../{TypeElement.java => AliasedEnum.java}         |   38 +-
 .../php/editor/api/elements/AliasedType.java       |    8 +-
 .../php/editor/api/elements/EnumCaseElement.java}  |   19 +-
 .../php/editor/api/elements/EnumElement.java}      |   20 +-
 .../php/editor/api/elements/TypeElement.java       |    1 +
 .../modules/php/editor/csl/NavigatorScanner.java   |   95 +
 .../modules/php/editor/csl/SemanticAnalysis.java   |  103 +-
 .../php/editor/elements/CaseElementImpl.java       |  257 +
 .../php/editor/elements/EnumElementImpl.java       |  390 +
 .../php/editor/elements/IndexQueryImpl.java        |  241 +-
 .../php/editor/elements/TypeElementImpl.java       |   22 +-
 .../modules/php/editor/indent/FormatToken.java     |    2 +
 .../modules/php/editor/indent/FormatVisitor.java   |  124 +-
 .../modules/php/editor/indent/TokenFormatter.java  |    7 +-
 .../modules/php/editor/indent/ui/BlankLines.php    |    7 +
 .../modules/php/editor/indent/ui/Spaces.php        |   13 +
 .../modules/php/editor/index/PHPIndexer.java       |    8 +-
 .../php/editor/lexer/PHP5ColoringLexer.java        | 2750 +++----
 .../modules/php/editor/lexer/PHPTokenId.java       |    3 +-
 .../modules/php/editor/model/CaseElement.java}     |   17 +-
 .../modules/php/editor/model/EnumScope.java}       |   18 +-
 .../modules/php/editor/model/IndexScope.java       |    3 +
 .../modules/php/editor/model/ModelUtils.java       |    9 +
 .../modules/php/editor/model/NamespaceScope.java   |    1 +
 .../php/editor/model/impl/CaseElementImpl.java     |   81 +
 .../php/editor/model/impl/EnumScopeImpl.java       |  378 +
 .../php/editor/model/impl/IndexScopeImpl.java      |   38 +
 .../php/editor/model/impl/InterfaceScopeImpl.java  |    2 +-
 .../php/editor/model/impl/ModelBuilder.java        |   27 +
 .../php/editor/model/impl/ModelVisitor.java        |   21 +-
 .../php/editor/model/impl/NamespaceScopeImpl.java  |    9 +-
 .../php/editor/model/impl/OccurenceBuilder.java    |  276 +-
 .../php/editor/model/impl/TypeScopeImpl.java       |   46 +-
 .../php/editor/model/impl/VariousUtils.java        |    3 +
 .../php/editor/model/nodes/ASTNodeInfo.java        |   34 +-
 .../editor/model/nodes/CaseDeclarationInfo.java    |   95 +
 .../editor/model/nodes/ClassDeclarationInfo.java   |   24 +-
 ...clarationInfo.java => EnumDeclarationInfo.java} |   69 +-
 .../editor/model/nodes/TraitDeclarationInfo.java   |   26 +-
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 5925 ++++++++-------
 .../modules/php/editor/parser/ASTPHP5Scanner.java  | 2606 +++----
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |    3 +-
 .../php/editor/parser/EncodedActionTable1.java     | 7788 ++++++++++----------
 .../php/editor/parser/EncodedActionTable10.java    | 6118 +++++++--------
 .../php/editor/parser/EncodedActionTable11.java    | 6012 +++++++--------
 .../php/editor/parser/EncodedActionTable12.java    | 6408 ++++++++--------
 .../php/editor/parser/EncodedActionTable13.java    | 6114 +++++++--------
 .../php/editor/parser/EncodedActionTable14.java    | 6698 ++++++++---------
 .../php/editor/parser/EncodedActionTable15.java    | 5714 +++++++-------
 .../php/editor/parser/EncodedActionTable16.java    | 5932 +++++++--------
 .../php/editor/parser/EncodedActionTable17.java    | 5378 ++++++++------
 .../php/editor/parser/EncodedActionTable18.java    | 1307 ++++
 .../php/editor/parser/EncodedActionTable2.java     | 6902 ++++++++---------
 .../php/editor/parser/EncodedActionTable3.java     | 6976 +++++++++---------
 .../php/editor/parser/EncodedActionTable4.java     | 6226 ++++++++--------
 .../php/editor/parser/EncodedActionTable5.java     | 6198 ++++++++--------
 .../php/editor/parser/EncodedActionTable6.java     | 5744 +++++++--------
 .../php/editor/parser/EncodedActionTable7.java     | 6114 +++++++--------
 .../php/editor/parser/EncodedActionTable8.java     | 5370 +++++++-------
 .../php/editor/parser/EncodedActionTable9.java     | 6162 ++++++++--------
 .../netbeans/modules/php/editor/parser/Utils.java  |    3 +
 .../editor/parser/astnodes/CaseDeclaration.java    |   92 +
 .../editor/parser/astnodes/EnumDeclaration.java    |  109 +
 .../php/editor/parser/astnodes/Visitor.java        |    4 +
 .../astnodes/visitors/DefaultTreePathVisitor.java  |   16 +
 .../parser/astnodes/visitors/DefaultVisitor.java   |   18 +
 .../astnodes/visitors/PhpElementVisitor.java       |    8 +
 .../modules/php}/editor/resources/enum.png         |  Bin
 .../editor/verification/PHP81UnhandledError.java   |   20 +
 .../structure/deprecatedDeclarations.pass          |    6 +
 .../csl/NavigatorTest/structure/enumerations.pass  |   46 +
 .../lexer/php81/enumAsTypeName.pass                |   81 +
 .../lexer/php81/enumerations_01.pass               |  424 ++
 .../lexer/php81/enumerations_02.pass               |  695 ++
 .../parser/php81/enumAsTypeName.pass               |  220 +
 .../parser/php81/enumerations_01.pass              | 1211 +++
 .../parser/php81/enumerations_02.pass              | 3811 ++++++++++
 .../bracematching/php81/enumerations.php}          |   62 +-
 ...testFindContextForEnumerations_01.bracecontext} |   62 +-
 ...testFindContextForEnumerations_02.bracecontext} |   62 +-
 ...testFindContextForEnumerations_03.bracecontext} |   62 +-
 ...testFindContextForEnumerations_04.bracecontext} |   62 +-
 ...testFindContextForEnumerations_05.bracecontext} |   62 +-
 ...testFindContextForEnumerations_06.bracecontext} |   62 +-
 .../unit/data/testfiles/enumerations_01.php.folds  |  100 +
 .../blankLines/php81/enumCasesBLAfter_01a.php}     |   70 +-
 .../php81/enumCasesBLAfter_01a.php.formatted}      |   86 +-
 .../blankLines/php81/enumCasesBLAfter_01b.php}     |   70 +-
 .../php81/enumCasesBLAfter_01b.php.formatted}      |   90 +-
 .../blankLines/php81/enumCasesBLBefore_01a.php}    |   70 +-
 .../php81/enumCasesBLBefore_01a.php.formatted}     |   85 +-
 .../blankLines/php81/enumCasesBLBefore_01b.php}    |   70 +-
 .../php81/enumCasesBLBefore_01b.php.formatted}     |   90 +-
 .../blankLines/php81/enumCasesBLBetween_01a.php}   |   70 +-
 .../php81/enumCasesBLBetween_01a.php.formatted}    |   93 +-
 .../blankLines/php81/enumCasesBLBetween_01b.php}   |   70 +-
 .../php81/enumCasesBLBetween_01b.php.formatted}    |   99 +-
 .../formatting/php81/enumerationsBP_01.php}        |   70 +-
 .../php81/enumerationsBP_01.php.formatted}         |   95 +-
 .../formatting/php81/enumerationsBP_02.php}        |   70 +-
 .../php81/enumerationsBP_02.php.formatted}         |   86 +-
 .../formatting/php81/enumerationsBP_03.php}        |   70 +-
 .../php81/enumerationsBP_03.php.formatted}         |   90 +-
 .../formatting/php81/enumerationsBP_04.php}        |   70 +-
 .../php81/enumerationsBP_04.php.formatted}         |   97 +-
 .../formatting/php81/enumerations_01.php}          |   69 +-
 .../php81/enumerations_01.php.formatted}           |   90 +-
 .../php81/spaceBeforeEnumDecLeftBrace_01a.php}     |   70 +-
 .../spaceBeforeEnumDecLeftBrace_01a.php.formatted} |   90 +-
 .../php81/spaceBeforeEnumDecLeftBrace_01b.php}     |   70 +-
 .../spaceBeforeEnumDecLeftBrace_01b.php.formatted} |   90 +-
 .../testfiles/index/testGetEnums/testGetEnums.php  |  100 +
 .../index/testGetEnums/testGetEnums.php.indexed    |  204 +
 .../index/testGetEnums/testGetEnums_1.php}         |   18 +-
 .../testfiles/lexer/php81/enumAsTypeName.php}      |   21 +-
 .../data/testfiles/lexer/php81/enumerations_01.php |   99 +
 .../data/testfiles/lexer/php81/enumerations_02.php |  101 +
 .../testfiles/parser/issue211165_06.php.errors     |    4 +-
 .../testfiles/parser/issue211165_08.php.errors     |    4 +-
 .../testfiles/parser/php81/enumAsTypeName.php}     |   21 +-
 .../parser/php81/enumAsTypeName.php.errors         |    0
 .../testfiles/parser/php81/enumerations_01.php     |   99 +
 .../parser/php81/enumerations_01.php.errors        |    0
 .../testfiles/parser/php81/enumerations_02.php     |  101 +
 .../parser/php81/enumerations_02.php.errors        |    0
 ...tersectionTypesWithUnionTypeError_03.php.errors |    4 +-
 .../deprecatedEnumCase/deprecatedEnumCase.php}     |   17 +-
 .../deprecatedEnumCase.php.semantic}               |   17 +-
 .../semantic/deprecatedTypes/deprecatedTypes.php   |    5 +-
 .../deprecatedTypes/deprecatedTypes.php.semantic   |    5 +-
 .../unit/data/testfiles/semantic/enumerations.php  |  105 +
 .../testfiles/semantic/enumerations.php.semantic   |  105 +
 .../testfiles/structure/deprecatedDeclarations.php |   16 +-
 .../unit/data/testfiles/structure/enumerations.php |  105 +
 .../modules/php/editor/PHPBracesMatcherTest.java   |   24 +
 .../DeprecatedEnumCaseSemanticAnalysisTest.java    |   50 +
 .../modules/php/editor/csl/FoldingTest.java        |    5 +
 .../modules/php/editor/csl/NavigatorTest.java      |    4 +
 .../php/editor/csl/SemanticAnalyzerTest.java       |    4 +
 .../editor/indent/PHPFormatterBlankLinesTest.java  |   41 +
 .../php/editor/indent/PHPFormatterSpacesTest.java  |   12 +
 .../php/editor/indent/PHPFormatterTest.java        |   29 +
 .../modules/php/editor/index/PHPIndexTest.java     |  144 +
 .../php/editor/lexer/PHP81FeaturesTest.java        |   12 +
 .../php/editor/parser/ASTPHP5ParserTest.java       |   13 +
 .../php/editor/parser/PhpParserErrorTest.java      |   13 +
 .../modules/php/editor/parser/PrintASTVisitor.java |   24 +
 php/php.editor/tools/ASTPHP5Parser.cup             |  142 +-
 php/php.editor/tools/ASTPHP5Scanner.flex           |   10 +
 php/php.editor/tools/Php5ColoringScanner.flex      |   10 +
 157 files changed, 73522 insertions(+), 58593 deletions(-)
 copy php/php.editor/src/org/netbeans/modules/php/editor/api/elements/{TypeElement.java => AliasedEnum.java} (62%)
 copy php/php.editor/{test/unit/src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => src/org/netbeans/modules/php/editor/api/elements/EnumCaseElement.java} (65%)
 copy php/php.editor/{test/unit/src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => src/org/netbeans/modules/php/editor/api/elements/EnumElement.java} (65%)
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/elements/CaseElementImpl.java
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/elements/EnumElementImpl.java
 copy php/php.editor/{test/unit/src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => src/org/netbeans/modules/php/editor/model/CaseElement.java} (65%)
 copy php/php.editor/{test/unit/src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => src/org/netbeans/modules/php/editor/model/EnumScope.java} (65%)
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/model/impl/CaseElementImpl.java
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/model/impl/EnumScopeImpl.java
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/model/nodes/CaseDeclarationInfo.java
 copy php/php.editor/src/org/netbeans/modules/php/editor/model/nodes/{TraitDeclarationInfo.java => EnumDeclarationInfo.java} (54%)
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/parser/EncodedActionTable18.java
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/parser/astnodes/CaseDeclaration.java
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/parser/astnodes/EnumDeclaration.java
 copy {groovy/groovy.editor/src/org/netbeans/modules/groovy => php/php.editor/src/org/netbeans/modules/php}/editor/resources/enum.png (100%)
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/csl/NavigatorTest/structure/enumerations.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest/lexer/php81/enumAsTypeName.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest/lexer/php81/enumerations_01.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest/lexer/php81/enumerations_02.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php81/enumAsTypeName.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php81/enumerations_01.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php81/enumerations_02.pass
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php} (51%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_01.bracecontext} (50%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_02.bracecontext} (50%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_03.bracecontext} (50%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_04.bracecontext} (50%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_05.bracecontext} (50%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/bracematching/php81/enumerations.php.testFindContextForEnumerations_06.bracecontext} (50%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/enumerations_01.php.folds
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLAfter_01a.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLAfter_01a.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLAfter_01b.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLAfter_01b.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBefore_01a.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBefore_01a.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBefore_01b.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBefore_01b.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBetween_01a.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBetween_01a.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBetween_01b.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/blankLines/php81/enumCasesBLBetween_01b.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_01.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_01.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_02.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_02.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_03.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_03.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_04.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerationsBP_04.php.formatted} (51%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerations_01.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/php81/enumerations_01.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/spaces/php81/spaceBeforeEnumDecLeftBrace_01a.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/spaces/php81/spaceBeforeEnumDecLeftBrace_01a.php.formatted} (52%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/spaces/php81/spaceBeforeEnumDecLeftBrace_01b.php} (57%)
 copy php/php.editor/{src/org/netbeans/modules/php/editor/api/elements/TypeElement.java => test/unit/data/testfiles/formatting/spaces/php81/spaceBeforeEnumDecLeftBrace_01b.php.formatted} (52%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/index/testGetEnums/testGetEnums.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/index/testGetEnums/testGetEnums.php.indexed
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/index/testGetEnums/testGetEnums_1.php} (65%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/lexer/php81/enumAsTypeName.php} (66%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/lexer/php81/enumerations_01.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/lexer/php81/enumerations_02.php
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/parser/php81/enumAsTypeName.php} (66%)
 copy enterprise/web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp => php/php.editor/test/unit/data/testfiles/parser/php81/enumAsTypeName.php.errors (100%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/php81/enumerations_01.php
 copy enterprise/web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp => php/php.editor/test/unit/data/testfiles/parser/php81/enumerations_01.php.errors (100%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/php81/enumerations_02.php
 copy enterprise/web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp => php/php.editor/test/unit/data/testfiles/parser/php81/enumerations_02.php.errors (100%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/semantic/deprecatedEnumCase/deprecatedEnumCase.php} (65%)
 copy php/php.editor/test/unit/{src/org/netbeans/modules/php/editor/lexer/PHP81FeaturesTest.java => data/testfiles/semantic/deprecatedEnumCase/deprecatedEnumCase.php.semantic} (65%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/semantic/enumerations.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/semantic/enumerations.php.semantic
 create mode 100644 php/php.editor/test/unit/data/testfiles/structure/enumerations.php
 create mode 100644 php/php.editor/test/unit/src/org/netbeans/modules/php/editor/csl/DeprecatedEnumCaseSemanticAnalysisTest.java


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

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