Hi,
Thank you for posting this in here, maybe these semantic highlighting
rules would be useful as well:
1. Global Variables -
a. <?php
b. $a = 5;
c. ?>
2. DeprecatedMember / DeprecatedFunction - strike deprecated
elements. See
http://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutor
ial_tags.deprecated.pkg.html
1. /**
2. * @deprecated deprecated since version 2.0
3. */
4. function uselessfunction() { }
5. uselessfunction()
3. FunctionDeclaration - you listed method but in PHP globl
functions can also be defined (actually you can unite the functions /
methods declarations rule).
1. function myFunc() { }
2. myFunc ();
3. class A { function myMethod() { } }
4. $a = new A(); $a->myMethod ();
4. Global "define" statements
1. define( "ADMIN", "administrator");
2. echo ADMIN;
And there are more :-)
Can you provide an example for each Semantic Highlighting you listed in
the page?
Roy
________________________________
From: [email protected] [mailto:[email protected]]
On Behalf Of ???
Sent: Thursday, April 16, 2009 3:02 PM
To: PDT Developers
Subject: [pdt-dev] wiki about semantic highlighting
http://wiki.eclipse.org/PDT/Dev2Dev/Semantic
i have just written a will on the above page.
i have finished two semantic highlighting,and listed some other semantic
highlightings that will be done.
i hope someone to see it if i missed some semantic highlightings,and
maybe there aresome semantic highlightings that listed do not belong to
pdt.
thank you in advance!
_______________________________________________
pdt-dev mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/pdt-dev