|
| |
| Navigation |
Synopsis Register an outliner.
Function
void registerOutliner(str name, node (&T<:Tree input) outliner)
Usage
import util::IDE;
Description Register an outliner function. An outliner maps a parse tree to a simpler
tree that summarizes the contents of a file. This summary is used to generate the outline
view in Eclipse.
Use the label and loc annotations on each node to guide how each outline item is displayed, which item it links to and what image is displayed next to it. |