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 f5ad8d22d5 Merge pull request #5705 from pepness/compress-1.23
new 9c6b91da4b Add a hint to introduce enum cases
new cf209e0726 Fix the hint to introduce enum methods
new 2dbb2c7347 Merge pull request #5704 from
junichi11/php-enum-introduce-suggestion-hint
The 8318 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/editor/CodeUtils.java | 4 +
.../modules/php/editor/model/ModelUtils.java | 8 +-
.../php/editor/model/impl/VariousUtils.java | 4 +-
.../editor/verification/IntroduceSuggestion.java | 149 +++++++++++++++++----
.../IntroduceSuggestion/testEnumCase.php | 51 +++++++
.../testEnumCase.php.testEnumCaseFix_01a.fixed | 53 ++++++++
.../testEnumCase.php.testEnumCaseFix_01b.fixed | 52 +++++++
.../testEnumCase.php.testEnumCaseFix_02a.fixed | 52 +++++++
.../testEnumCase.php.testEnumCaseFix_02b.fixed | 52 +++++++
.../testEnumCase.php.testEnumCaseFix_03a.fixed | 52 +++++++
.../testEnumCase.php.testEnumCaseFix_03b.fixed | 52 +++++++
.../testEnumCase.php.testEnumCase_01.hints | 6 +
.../testEnumCase.php.testEnumCase_02.hints | 6 +
.../testEnumCase.php.testEnumCase_03.hints | 6 +
.../IntroduceSuggestion/testEnumMethods.php | 51 +++++++
...testEnumMethods.php.testEnumMethodsFix_01.fixed | 56 ++++++++
...testEnumMethods.php.testEnumMethodsFix_02.fixed | 56 ++++++++
...testEnumMethods.php.testEnumMethodsFix_03.fixed | 56 ++++++++
...testEnumMethods.php.testEnumMethodsFix_04.fixed | 56 ++++++++
...testEnumMethods.php.testEnumMethodsFix_05.fixed | 56 ++++++++
...testEnumMethods.php.testEnumMethodsFix_06.fixed | 56 ++++++++
.../testEnumMethods.php.testEnumMethods_01.hints | 4 +
.../testEnumMethods.php.testEnumMethods_02.hints | 4 +
.../testEnumMethods.php.testEnumMethods_03.hints | 4 +
.../testEnumMethods.php.testEnumMethods_04.hints | 4 +
.../testEnumMethods.php.testEnumMethods_05.hints | 4 +
.../testEnumMethods.php.testEnumMethods_06.hints | 4 +
.../verification/IntroduceSuggestionTest.java | 115 ++++++++++++++++
28 files changed, 1046 insertions(+), 27 deletions(-)
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_01a.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_01b.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_02a.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_02b.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_03a.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCaseFix_03b.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCase_01.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCase_02.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumCase.php.testEnumCase_03.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_01.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_02.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_03.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_04.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_05.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethodsFix_06.fixed
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_01.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_02.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_03.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_04.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_05.hints
create mode 100644
php/php.editor/test/unit/data/testfiles/verification/IntroduceSuggestion/testEnumMethods.php.testEnumMethods_06.hints
create mode 100644
php/php.editor/test/unit/src/org/netbeans/modules/php/editor/verification/IntroduceSuggestionTest.java
---------------------------------------------------------------------
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