This is an automated email from the ASF dual-hosted git repository.
tmysik pushed a change to branch php82-support
in repository https://gitbox.apache.org/repos/asf/netbeans.git
from 220810015a Merge pull request #4955 from
junichi11/php82-readonly-classes
new 3010ded119 Minor improvement
new 6e1dd9ca75 PHP 8.1 Support: New in initializers (Part 5)
new c58bff654e PHP 8.2 Support: Fetch properties of enums in const
expressions (Part 1)
new 3be33043c0 Merge pull request #4966 from
junichi11/php82-fetch-properties-of-enums-in-const-expressions
The 7637 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/nbproject/project.properties | 2 +-
.../php/editor/completion/PHPCodeCompletion.java | 9 +-
.../editor/model/nodes/ClassDeclarationInfo.java | 4 +
.../modules/php/editor/parser/ASTPHP5Parser.java | 3712 ++++++-----
.../modules/php/editor/parser/ASTPHP5Symbols.java | 2 +-
.../php/editor/parser/EncodedActionTable1.java | 6510 +++++++++---------
.../php/editor/parser/EncodedActionTable10.java | 6010 ++++++++---------
.../php/editor/parser/EncodedActionTable11.java | 5886 ++++++++---------
.../php/editor/parser/EncodedActionTable12.java | 6318 +++++++++---------
.../php/editor/parser/EncodedActionTable13.java | 5288 +++++++--------
.../php/editor/parser/EncodedActionTable14.java | 5948 ++++++++---------
.../php/editor/parser/EncodedActionTable15.java | 6354 +++++++++---------
.../php/editor/parser/EncodedActionTable16.java | 6878 ++++++++++----------
.../php/editor/parser/EncodedActionTable17.java | 4806 +++++++-------
.../php/editor/parser/EncodedActionTable18.java | 5412 +++++++--------
.../php/editor/parser/EncodedActionTable19.java | 1987 +++++-
.../php/editor/parser/EncodedActionTable2.java | 5578 ++++++++--------
.../php/editor/parser/EncodedActionTable3.java | 6302 +++++++++---------
.../php/editor/parser/EncodedActionTable4.java | 4928 +++++++-------
.../php/editor/parser/EncodedActionTable5.java | 6054 ++++++++---------
.../php/editor/parser/EncodedActionTable6.java | 5502 ++++++++--------
.../php/editor/parser/EncodedActionTable7.java | 4182 ++++++------
.../php/editor/parser/EncodedActionTable8.java | 5370 +++++++--------
.../php/editor/parser/EncodedActionTable9.java | 6016 ++++++++---------
.../editor/parser/astnodes/ConstantVariable.java | 50 +
.../php/editor/parser/astnodes/Variable.java | 11 +-
.../php/editor/parser/astnodes/Visitor.java | 2 +
.../astnodes/visitors/DefaultTreePathVisitor.java | 8 +
.../parser/astnodes/visitors/DefaultVisitor.java | 6 +
.../editor/verification/PHP81UnhandledError.java | 13 +
.../parser/php81/newInInitializers_02.pass | 812 +++
.../fetchPropertiesInConstExpressions_01.pass | 2211 +++++++
.../testEnums/enums.php.testEnums_08.completion | 2 +
.../testEnums/enums.php.testEnums_24.completion | 2 +
.../testEnums/enums.php.testEnums_30.completion | 2 +
...numsTyping_06.php.testEnumsTyping_06.completion | 1 +
...hp.testEnumsUnionAndBackedMembers_02.completion | 1 +
...hp.testEnumsUnionAndBackedMembers_03.completion | 1 +
...hp.testEnumsUnionAndBackedMembers_04.completion | 1 +
.../fetchPropertiesInConstExpressions.php | 73 +
...etchPropertiesInConstExpressions_01a.completion | 6 +
...etchPropertiesInConstExpressions_01b.completion | 5 +
...FetchPropertiesInConstExpressions_02.completion | 5 +
...FetchPropertiesInConstExpressions_03.completion | 5 +
...FetchPropertiesInConstExpressions_04.completion | 5 +
...FetchPropertiesInConstExpressions_05.completion | 5 +
...FetchPropertiesInConstExpressions_06.completion | 5 +
...FetchPropertiesInConstExpressions_07.completion | 5 +
...FetchPropertiesInConstExpressions_08.completion | 5 +
...FetchPropertiesInConstExpressions_09.completion | 5 +
...FetchPropertiesInConstExpressions_10.completion | 5 +
.../parser/php81/newInInitializers_02.php | 57 +
.../parser/php81/newInInitializers_02.php.errors | 0
.../php82/fetchPropertiesInConstExpressions_01.php | 78 +
...fetchPropertiesInConstExpressions_01.php.errors | 0
.../editor/completion/PHP82CodeCompletionTest.java | 44 +
.../php/editor/parser/ASTPHP5ParserTest.java | 8 +
.../php/editor/parser/PhpParserErrorTest.java | 8 +
.../modules/php/editor/parser/PrintASTVisitor.java | 7 +
php/php.editor/tools/ASTPHP5Parser.cup | 59 +-
60 files changed, 59109 insertions(+), 53462 deletions(-)
create mode 100644
php/php.editor/src/org/netbeans/modules/php/editor/parser/astnodes/ConstantVariable.java
create mode 100644
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php81/newInInitializers_02.pass
create mode 100644
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php82/fetchPropertiesInConstExpressions_01.pass
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_01a.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_01b.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_02.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_03.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_04.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_05.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_06.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_07.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_08.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_09.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/completion/lib/php82/testFetchPropertiesInConstExpressions/fetchPropertiesInConstExpressions.php.testFetchPropertiesInConstExpressions_10.completion
create mode 100644
php/php.editor/test/unit/data/testfiles/parser/php81/newInInitializers_02.php
copy
enterprise/web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp
=>
php/php.editor/test/unit/data/testfiles/parser/php81/newInInitializers_02.php.errors
(100%)
create mode 100644
php/php.editor/test/unit/data/testfiles/parser/php82/fetchPropertiesInConstExpressions_01.php
copy
enterprise/web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp
=>
php/php.editor/test/unit/data/testfiles/parser/php82/fetchPropertiesInConstExpressions_01.php.errors
(100%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists