I'm trying to update a xml-file for syntax-highlighting and therefor I was wondering what's the simplest way to get a list of all Perl built-in-functions.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Here is quick implementation of cnicutar's idea:
Gives you list including parameters like this:
|
|||
|
|
|
Look at the toke.c file in the
You'll find many of the things that won't show up in perlfunc. However, that depends on how you want to segment that various things that you want to color. You could also look at PPI, a static Perl parser, or the existing Perl syntax highlighters. |
|||
|
|
|
I would parse |
|||||||||||||||||||
|