forked from apache/netbeans
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[NETBEANS-5028] PHP - improved display of constant in code completion
https://issues.apache.org/jira/browse/NETBEANS-5028 Improves display of array constant in code completion. Uses short array format, displays first item in array, indicates more elements in array.
- Loading branch information
Showing
10 changed files
with
123 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...eratorInArrayExpression.php.testSpreadOperatorInArrayExpression_GlobalConst_03.completion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Code completion result for source line: | ||
const CONSTANT3 = [...CONSTANT2, 100 => 0, ...CONSTANT|]; | ||
(QueryType=COMPLETION, prefixSearch=true, caseSensitive=true) | ||
CONSTANT CONSTANT ? [PUBLIC] Foo | ||
CONSTANT CONSTANT1 ? [PUBLIC] Foo | ||
CONSTANT CONSTANT1a ? [PUBLIC] Foo | ||
CONSTANT CONSTANT2 ? [PUBLIC] Foo | ||
CONSTANT CONSTANT3 ? [PUBLIC] Foo | ||
CONSTANT CONSTANT4 ? [PUBLIC] Foo | ||
CONSTANT CONSTANT5 ? [PUBLIC] Foo | ||
CONSTANT CONSTANT [0,...] [PUBLIC] Foo | ||
CONSTANT CONSTANT1 [...] [PUBLIC] Foo | ||
CONSTANT CONSTANT1a [[0,...]] [PUBLIC] Foo | ||
CONSTANT CONSTANT2 [100,...] [PUBLIC] Foo | ||
CONSTANT CONSTANT3 [...] [PUBLIC] Foo | ||
CONSTANT CONSTANT4 [...] [PUBLIC] Foo | ||
CONSTANT CONSTANT5 [...] [PUBLIC] Foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters