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 2018/09/05 05:14:04 UTC

[incubator-netbeans] branch master updated (3505422 -> 4c29b9d)

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/incubator-netbeans.git.


    from 3505422  [NETBEANS-1074] Module Review libs.glassfish_logging
     add 4d6df74  [NETBEANS-946] PHP 7.3 support
     add b2084d4  [NETBEANS-946] PHP 7.3 support
     add 2ea9542  Increase specification version to 1.77.0
     new 4c29b9d  Merge pull request #840 from junichi11/php7.3-support

The 1 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.api.phpmodule/manifest.mf                  |    2 +-
 .../org/netbeans/modules/php/api/PhpVersion.java   |    8 +-
 php/php.editor/nbproject/project.properties        |    2 +-
 php/php.editor/nbproject/project.xml               |    2 +-
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 2043 ++++++++++----------
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |    2 +-
 .../php/editor/parser/EncodedActionTable1.java     |  722 +++----
 .../php/editor/parser/EncodedActionTable10.java    |   90 +-
 .../php/editor/parser/EncodedActionTable11.java    |  158 +-
 .../php/editor/parser/EncodedActionTable12.java    |  124 +-
 .../php/editor/parser/EncodedActionTable13.java    |  125 +-
 .../php/editor/parser/EncodedActionTable2.java     | 1734 ++++++++---------
 .../php/editor/parser/EncodedActionTable3.java     |  838 ++++----
 .../php/editor/parser/EncodedActionTable4.java     |  234 +--
 .../php/editor/parser/EncodedActionTable5.java     |  116 +-
 .../php/editor/parser/EncodedActionTable6.java     |  216 +--
 .../php/editor/parser/EncodedActionTable7.java     |  172 +-
 .../php/editor/parser/EncodedActionTable8.java     |  336 ++--
 .../php/editor/parser/EncodedActionTable9.java     |  138 +-
 .../editor/parser/astnodes/FunctionInvocation.java |   11 +-
 .../php/editor/parser/astnodes/ListVariable.java   |    2 +
 .../modules/php/editor/resources/layer.xml         |    1 +
 .../editor/verification/PHP73UnhandledError.java   |  246 +++
 .../parser/functionCallTrailingCommas_01.pass      |  948 +++++++++
 .../parser/listReferenceAssignment_01.pass         |  644 ++++++
 .../wrapping/functionCallTrailingCommas01.php      |   48 +
 .../functionCallTrailingCommas01.php.formatted     |   50 +
 .../wrapping/functionCallTrailingCommas02.php      |   26 +
 .../functionCallTrailingCommas02.php.formatted     |   37 +
 .../wrapping/functionCallTrailingCommas03.php      |   48 +
 .../functionCallTrailingCommas03.php.formatted     |   49 +
 .../wrapping/functionCallTrailingCommas04.php      |   26 +
 .../functionCallTrailingCommas04.php.formatted     |   27 +
 .../parser/functionCallTrailingCommas_01.php       |   69 +
 .../functionCallTrailingCommas_01.php.errors       |    0
 .../parser/functionCallTrailingCommas_02.php       |    2 +
 .../functionCallTrailingCommas_02.php.errors       |    7 +
 .../parser/functionCallTrailingCommas_03.php       |    2 +
 .../functionCallTrailingCommas_03.php.errors       |    7 +
 .../parser/functionCallTrailingCommas_04.php       |    2 +
 .../functionCallTrailingCommas_04.php.errors       |   10 +
 .../parser/listReferenceAssignment_01.php          |   14 +
 .../parser/listReferenceAssignment_01.php.errors   |    0
 .../editor/indent/PHPFormatterWrappingTest.java    |   25 +
 .../php/editor/parser/ASTPHP5ParserTest.java       |    9 +
 .../php/editor/parser/PhpParserErrorTest.java      |   21 +
 php/php.editor/tools/ASTPHP5Parser.cup             |    6 +-
 47 files changed, 5877 insertions(+), 3522 deletions(-)
 create mode 100644 php/php.editor/src/org/netbeans/modules/php/editor/verification/PHP73UnhandledError.java
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/functionCallTrailingCommas_01.pass
 create mode 100644 php/php.editor/test/unit/data/goldenfiles/org/netbeans/modules/php/editor/parser/ASTPHP5ParserTest/parser/listReferenceAssignment_01.pass
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas01.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas01.php.formatted
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas02.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas02.php.formatted
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas03.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas03.php.formatted
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas04.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/formatting/wrapping/functionCallTrailingCommas04.php.formatted
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_01.php
 copy web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp => php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_01.php.errors (100%)
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_02.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_02.php.errors
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_03.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_03.php.errors
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_04.php
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/functionCallTrailingCommas_04.php.errors
 create mode 100644 php/php.editor/test/unit/data/testfiles/parser/listReferenceAssignment_01.php
 copy web.jspparser/test/unit/data/jspparser-data/wmroot/subdir/Page1.jsp => php/php.editor/test/unit/data/testfiles/parser/listReferenceAssignment_01.php.errors (100%)


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


[incubator-netbeans] 01/01: Merge pull request #840 from junichi11/php7.3-support

Posted by tm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4c29b9d843d56062fde56490f6cd044017b46fa8
Merge: 3505422 2ea9542
Author: Tomáš Myšík <to...@gmail.com>
AuthorDate: Wed Sep 5 07:13:57 2018 +0200

    Merge pull request #840 from junichi11/php7.3-support
    
     [NETBEANS-946] PHP 7.3 support

 php/php.api.phpmodule/manifest.mf                  |    2 +-
 .../org/netbeans/modules/php/api/PhpVersion.java   |    8 +-
 php/php.editor/nbproject/project.properties        |    2 +-
 php/php.editor/nbproject/project.xml               |    2 +-
 .../modules/php/editor/parser/ASTPHP5Parser.java   | 2043 ++++++++++----------
 .../modules/php/editor/parser/ASTPHP5Symbols.java  |    2 +-
 .../php/editor/parser/EncodedActionTable1.java     |  722 +++----
 .../php/editor/parser/EncodedActionTable10.java    |   90 +-
 .../php/editor/parser/EncodedActionTable11.java    |  158 +-
 .../php/editor/parser/EncodedActionTable12.java    |  124 +-
 .../php/editor/parser/EncodedActionTable13.java    |  125 +-
 .../php/editor/parser/EncodedActionTable2.java     | 1734 ++++++++---------
 .../php/editor/parser/EncodedActionTable3.java     |  838 ++++----
 .../php/editor/parser/EncodedActionTable4.java     |  234 +--
 .../php/editor/parser/EncodedActionTable5.java     |  116 +-
 .../php/editor/parser/EncodedActionTable6.java     |  216 +--
 .../php/editor/parser/EncodedActionTable7.java     |  172 +-
 .../php/editor/parser/EncodedActionTable8.java     |  336 ++--
 .../php/editor/parser/EncodedActionTable9.java     |  138 +-
 .../editor/parser/astnodes/FunctionInvocation.java |   11 +-
 .../php/editor/parser/astnodes/ListVariable.java   |    2 +
 .../modules/php/editor/resources/layer.xml         |    1 +
 .../editor/verification/PHP73UnhandledError.java   |  246 +++
 .../parser/functionCallTrailingCommas_01.pass      |  948 +++++++++
 .../parser/listReferenceAssignment_01.pass         |  644 ++++++
 .../wrapping/functionCallTrailingCommas01.php      |   48 +
 .../functionCallTrailingCommas01.php.formatted     |   50 +
 .../wrapping/functionCallTrailingCommas02.php      |   26 +
 .../functionCallTrailingCommas02.php.formatted     |   37 +
 .../wrapping/functionCallTrailingCommas03.php      |   48 +
 .../functionCallTrailingCommas03.php.formatted     |   49 +
 .../wrapping/functionCallTrailingCommas04.php      |   26 +
 .../functionCallTrailingCommas04.php.formatted     |   27 +
 .../parser/functionCallTrailingCommas_01.php       |   69 +
 .../functionCallTrailingCommas_01.php.errors       |    1 +
 .../parser/functionCallTrailingCommas_02.php       |    2 +
 .../functionCallTrailingCommas_02.php.errors       |    7 +
 .../parser/functionCallTrailingCommas_03.php       |    2 +
 .../functionCallTrailingCommas_03.php.errors       |    7 +
 .../parser/functionCallTrailingCommas_04.php       |    2 +
 .../functionCallTrailingCommas_04.php.errors       |   10 +
 .../parser/listReferenceAssignment_01.php          |   14 +
 .../parser/listReferenceAssignment_01.php.errors   |    1 +
 .../editor/indent/PHPFormatterWrappingTest.java    |   25 +
 .../php/editor/parser/ASTPHP5ParserTest.java       |    9 +
 .../php/editor/parser/PhpParserErrorTest.java      |   21 +
 php/php.editor/tools/ASTPHP5Parser.cup             |    6 +-
 47 files changed, 5879 insertions(+), 3522 deletions(-)


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