@tikoci/centrs
    Preparing search index...

    Interface Segment

    One top-level statement located in analyzed-byte space.

    interface Segment {
        end: number;
        menuOnly: boolean;
        start: number;
        terminator: ";" | "newline" | "eof";
        text: string;
    }
    Index

    Properties

    end: number

    analyzed-byte offset, exclusive.

    menuOnly: boolean

    true when the statement looks like pure menu navigation: a /-rooted path of path-shaped tokens with no =, quotes, brackets, or $. This is a SHAPE hint, not a verb claim — offline (schema-free) cannot tell a trailing verb (/ip address print) from a deeper menu (/ip address), so both are menuOnly: true. Q4/Q6 decide what it means. See isMenuOnly.

    start: number

    analyzed-byte offset, inclusive.

    terminator: ";" | "newline" | "eof"

    the separator that ENDED this statement, for the boundary taxonomy.

    text: string

    the original (human-readable) statement text, trimmed.