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 b8441cf  Merge pull request #2188 from 
junichi11/netbeans-4444-editor-search
     new 646a308  Add PHP 8.0 to the `PhpVersion`
     new 31c86e7  [NETBEANS-4443] PHP 8.0 Support: Non-capturing catches part
     new 5d88f2a  Merge pull request #2265 from 
junichi11/php80-non-capturing-catches

The 4172 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:
 .../org/netbeans/modules/php/api/PhpVersion.java   |   11 +-
 .../php/editor/model/impl/ModelVisitor.java        |    2 +-
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 1170 ++++++++++----------
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |    2 +-
 .../php/editor/parser/EncodedActionTable1.java     |  694 ++++++------
 .../php/editor/parser/EncodedActionTable10.java    |   14 +-
 .../php/editor/parser/EncodedActionTable11.java    |   14 +-
 .../php/editor/parser/EncodedActionTable12.java    |   16 +-
 .../php/editor/parser/EncodedActionTable13.java    |  112 +-
 .../php/editor/parser/EncodedActionTable14.java    |  119 +-
 .../php/editor/parser/EncodedActionTable2.java     |  132 +--
 .../php/editor/parser/EncodedActionTable3.java     |   14 +-
 .../php/editor/parser/EncodedActionTable4.java     |   14 +-
 .../php/editor/parser/EncodedActionTable5.java     |   14 +-
 .../php/editor/parser/EncodedActionTable6.java     |   14 +-
 .../php/editor/parser/EncodedActionTable7.java     |   14 +-
 .../php/editor/parser/EncodedActionTable8.java     |   14 +-
 .../php/editor/parser/EncodedActionTable9.java     |   28 +-
 .../php/editor/parser/astnodes/CatchClause.java    |   18 +-
 .../modules/php/editor/resources/layer.xml         |    1 +
 .../editor/verification/PHP80UnhandledError.java   |  133 +++
 .../parser/php80/nonCapturingCatches_01.pass       |  503 +++++++++
 .../nonCapturingCatches.php                        |   42 +
 ...tches.php.testNonCapturingCatches_01.completion |    6 +
 ...tches.php.testNonCapturingCatches_02.completion |    6 +
 ...tches.php.testNonCapturingCatches_03.completion |    6 +
 ...tches.php.testNonCapturingCatches_04.completion |    6 +
 .../spaces/spaceAroundNonCapturingCatches01.php    |   35 +
 .../spaceAroundNonCapturingCatches01.php.formatted |   36 +
 .../testNonCapturingCatches.php                    |   40 +
 .../testNonCapturingCatches.php                    |   40 +
 .../parser/php80/nonCapturingCatches_01.php        |   50 +
 .../php80/nonCapturingCatches_01.php.errors}       |    0
 ...ches.php.testNonCapturingCatches_01.occurrences |    3 +
 ...ches.php.testNonCapturingCatches_02.occurrences |    3 +
 ...ches.php.testNonCapturingCatches_03.occurrences |    3 +
 ...ches.php.testNonCapturingCatches_04.occurrences |    2 +
 ...ches.php.testNonCapturingCatches_05.occurrences |    2 +
 .../editor/completion/PHP80CodeCompletionTest.java |   83 ++
 .../php/editor/csl/GotoDeclarationPHP80Test.java   |   39 +
 .../editor/csl/OccurrencesFinderImplPHP80Test.java |   47 +
 .../php/editor/indent/PHPFormatterSpacesTest.java  |    6 +
 .../php/editor/parser/ASTPHP5ParserTest.java       |    5 +
 .../php/editor/parser/PhpParserErrorTest.java      |    5 +
 php/php.editor/tools/ASTPHP5Parser.cup             |   18 +-
 45 files changed, 2361 insertions(+), 1175 deletions(-)
 create mode 100644 
php/php.editor/src/org/netbeans/modules/php/editor/verification/PHP80UnhandledError.java
 create mode 100644 
php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/php80/nonCapturingCatches_01.pass
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testNonCapturingCatches/nonCapturingCatches.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testNonCapturingCatches/nonCapturingCatches.php.testNonCapturingCatches_01.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testNonCapturingCatches/nonCapturingCatches.php.testNonCapturingCatches_02.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testNonCapturingCatches/nonCapturingCatches.php.testNonCapturingCatches_03.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/completion/lib/php80/testNonCapturingCatches/nonCapturingCatches.php.testNonCapturingCatches_04.completion
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/spaceAroundNonCapturingCatches01.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/formatting/spaces/spaceAroundNonCapturingCatches01.php.formatted
 create mode 100644 
php/php.editor/test/unit/data/testfiles/gotodeclaration/testNonCapturingCatches/testNonCapturingCatches.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/markoccurences/testNonCapturingCatches/testNonCapturingCatches.php
 create mode 100644 
php/php.editor/test/unit/data/testfiles/parser/php80/nonCapturingCatches_01.php
 copy 
php/{php.smarty/src/org/netbeans/modules/php/smarty/resources/TplTemplate.tpl 
=> 
php.editor/test/unit/data/testfiles/parser/php80/nonCapturingCatches_01.php.errors}
 (100%)
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testNonCapturingCatches.php.testNonCapturingCatches_01.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testNonCapturingCatches.php.testNonCapturingCatches_02.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testNonCapturingCatches.php.testNonCapturingCatches_03.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testNonCapturingCatches.php.testNonCapturingCatches_04.occurrences
 create mode 100644 
php/php.editor/test/unit/data/testfiles/testNonCapturingCatches.php.testNonCapturingCatches_05.occurrences
 create mode 100644 
php/php.editor/test/unit/src/org/netbeans/modules/php/editor/completion/PHP80CodeCompletionTest.java
 create mode 100644 
php/php.editor/test/unit/src/org/netbeans/modules/php/editor/csl/GotoDeclarationPHP80Test.java
 create mode 100644 
php/php.editor/test/unit/src/org/netbeans/modules/php/editor/csl/OccurrencesFinderImplPHP80Test.java


---------------------------------------------------------------------
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