OnSeparateLines

OnSeparateLines#

class penzai.treescope.foldable_representation.basic_parts.OnSeparateLines[source]#

Bases: RenderableTreePart

A sequence of children, one per line, not indented.

Variables:

children (Sequence[RenderableTreePart]) – Children to render on separate lines when expanded.

Inherited Attributes

collapsed_width

The length of this rendering if collapsed in one line, in characters.

newlines_in_expanded_parent

The number of newlines in this rendering if in an expanded parent.

tags_in_this_part

Returns a set of "tag" objects contained in this part.

Methods

__init__(children)

build(children)

Builds a OnSeparateLines instance, supporting annotations.

foldables_in_this_part()

html_setup_parts(context)

render_to_html(stream, *[, at_beginning_of_line])

render_to_text(stream, *, expanded_parent, ...)

Attributes

collapsed_width

The length of this rendering if collapsed in one line, in characters.

newlines_in_expanded_parent

The number of newlines in this rendering if in an expanded parent.

tags_in_this_part

Returns a set of "tag" objects contained in this part.

children

classmethod build(children: Sequence[RenderableAndLineAnnotations | RenderableTreePart]) OnSeparateLines[source]#

Builds a OnSeparateLines instance, supporting annotations.

This method stacks the children together, moving any comments to the end of their lines.

Parameters:

children – Children to render.

Returns:

New OnSeparateLines instance.