Source code viwer with cross referencing support. Every sybol is a link to where it was defined.
Nice. So far I've used etags for that, but it's buggy. :)
/ Mirar
Previous text:
2003-10-02 17:50: Subject: Some tasks from the conference
o Finish the implementation of the "variant" feature (i.e. runtime dispatch on function argument types).
Can someone elaborate on this?
Overloading.
variant void my_exit(int bar) { exit(bar); }
variant void my_exit(string bar) { werror(bar); exit(17); }
A keyword is used to catch errorenous multiple definitions.
o Fix LXR view of the pike source on the pike site.
LXR?
Source code viwer with cross referencing support. Every sybol is a link to where it was defined.
/ Martin Nilsson (saturator)