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.
Merge pull request apache#3327 from junichi11/netbeans-2472-overridin…
…g-properties [NETBEANS-2472] Mark overriding/overridden constants and properties as annotations
- Loading branch information
Showing
13 changed files
with
847 additions
and
17 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
18 changes: 18 additions & 0 deletions
18
...s/php/editor/csl/OverridingMethodsOverriddenTest/overriding/overridden/overridden_01.pass
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[Overridden] | ||
|
||
[Constant] | ||
IMPLICIT_PUBLIC_PARENT_CONST (ChildClass1.php)(ChildClass2.php) | ||
PROTECTED_PARENT_CONST (ChildClass1.php)(ChildClass2.php) | ||
PUBLIC_PARENT_CONST (ChildClass1.php)(ChildClass2.php) | ||
[Field] | ||
$protectedParentClassField (ChildClass2.php) | ||
$protectedStaticParentClassField (ChildClass2.php) | ||
$publicParentClassField (ChildClass2.php) | ||
$publicStaticParentClassField (ChildClass2.php) | ||
[Method] | ||
protectedParentClassMethod (ChildClass2.php) | ||
protectedStaticParentClassMethod (ChildClass2.php) | ||
publicParentClassMethod (ChildClass2.php) | ||
publicStaticParentClassMethod (ChildClass2.php) | ||
[Type] | ||
ParentClass (ChildClass1.php)(ChildClass2.php) |
16 changes: 16 additions & 0 deletions
16
...s/php/editor/csl/OverridingMethodsOverridingTest/overriding/overriding/overriding_01.pass
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[Overring] | ||
|
||
[Constant] | ||
IMPLICIT_PUBLIC_PARENT_CONST (ParentClass.php) | ||
PROTECTED_PARENT_CONST (ParentClass.php) | ||
PUBLIC_PARENT_CONST (ParentClass.php) | ||
[Field] | ||
$protectedParentClassField (ParentClass.php) | ||
$protectedStaticParentClassField (ParentClass.php) | ||
$publicParentClassField (ParentClass.php) | ||
$publicStaticParentClassField (ParentClass.php) | ||
[Method] | ||
protectedParentClassMethod (ParentClass.php) | ||
protectedStaticParentClassMethod (ParentClass.php) | ||
publicParentClassMethod (ParentClass.php) | ||
publicStaticParentClassMethod (ParentClass.php) |
Oops, something went wrong.