Search in sources :

Example 1 with Section

use of us.parr.bookish.model.Section in project bookish by parrt.

the class Translator method visitSection.

@Override
public OutputModelObject visitSection(BookishParser.SectionContext ctx) {
    String title = ctx.sec.getText();
    title = title.substring(title.indexOf(' ') + 1).trim();
    Pair<String, String> results = splitSectionTitle(title);
    title = results.a;
    String anchor = results.b;
    EntityDef def = null;
    if (anchor != null) {
        def = document.getEntity(anchor);
        if (def == null) {
            System.err.printf("line %d: Unknown label '%s'\n", ctx.start.getLine(), anchor);
            return null;
        }
    }
    List<ContainerWithTitle> subsections = new ArrayList<>();
    for (ParseTree el : ctx.subsection()) {
        subsections.add((SubSection) visit(el));
    }
    Join sec = (Join) visitSection_content(ctx.section_content());
    return new Section(def, title, anchor, sec.elements, subsections);
}
Also used : ContainerWithTitle(us.parr.bookish.model.ContainerWithTitle) ArrayList(java.util.ArrayList) Join(us.parr.bookish.model.Join) SubSubSection(us.parr.bookish.model.SubSubSection) SubSection(us.parr.bookish.model.SubSection) Section(us.parr.bookish.model.Section) ParseTree(org.antlr.v4.runtime.tree.ParseTree) EntityDef(us.parr.bookish.model.entity.EntityDef)

Aggregations

ArrayList (java.util.ArrayList)1 ParseTree (org.antlr.v4.runtime.tree.ParseTree)1 ContainerWithTitle (us.parr.bookish.model.ContainerWithTitle)1 Join (us.parr.bookish.model.Join)1 Section (us.parr.bookish.model.Section)1 SubSection (us.parr.bookish.model.SubSection)1 SubSubSection (us.parr.bookish.model.SubSubSection)1 EntityDef (us.parr.bookish.model.entity.EntityDef)1