Class: Rley::Formatter::Asciitree

Inherits:
BaseFormatter show all
Defined in:
lib/rley/formatter/asciitree.rb

Overview

A formatter class that draws parse trees by using characters

Instance Attribute Summary collapse

Attributes inherited from BaseFormatter

#output

Instance Method Summary collapse

Methods inherited from BaseFormatter

#render

Constructor Details

#initialize(anIO) ⇒ Asciitree

Constructor. is written.

Parameters:

  • anIO (IO)

    The output stream to which the rendered grammar



25
26
27
28
29
30
31
32
33
# File 'lib/rley/formatter/asciitree.rb', line 25

def initialize(anIO)
  super(anIO)
  @curr_path = []
  @ranks = []

  @nesting_prefix = '+-- '
  @blank_indent = '    '
  @continuation_indent = '|   '
end

Instance Attribute Details

#blank_indentObject (readonly)

Returns the value of attribute blank_indent.



18
19
20
# File 'lib/rley/formatter/asciitree.rb', line 18

def blank_indent
  @blank_indent
end

#continuation_indentObject (readonly)

Returns the value of attribute continuation_indent.



20
21
22
# File 'lib/rley/formatter/asciitree.rb', line 20

def continuation_indent
  @continuation_indent
end

#curr_pathObject (readonly)

TODO



10
11
12
# File 'lib/rley/formatter/asciitree.rb', line 10

def curr_path
  @curr_path
end

#nesting_prefixObject (readonly)

Returns the value of attribute nesting_prefix.



16
17
18
# File 'lib/rley/formatter/asciitree.rb', line 16

def nesting_prefix
  @nesting_prefix
end

#ranksObject (readonly)

For each node in curr_path, there is a corresponding string value. Allowed string values are: 'first', 'last', 'first_and_last', 'other'



14
15
16
# File 'lib/rley/formatter/asciitree.rb', line 14

def ranks
  @ranks
end

Instance Method Details

#after_subnodes(_parent, _children) ⇒ Object

Method called by a ParseTreeVisitor to which the formatter subscribed. Notification of a visit event: the visitor completed the visit of the children of a non-terminal node.

Parameters:

  • _parent (NonTerminalNode)
  • _children (Array)

    array of children nodes



70
71
72
73
# File 'lib/rley/formatter/asciitree.rb', line 70

def after_subnodes(_parent, _children)
  curr_path.pop
  ranks.pop
end

#before_non_terminal(aNonTerm) ⇒ Object

Method called by a ParseTreeVisitor to which the formatter subscribed. Notification of a visit event: the visitor is about to visit a non-terminal node

Parameters:

  • nonterm (NonTerminalNode)


51
52
53
# File 'lib/rley/formatter/asciitree.rb', line 51

def before_non_terminal(aNonTerm)
  emit(aNonTerm)
end

#before_subnodes(parent, children) ⇒ Object

Method called by a ParseTreeVisitor to which the formatter subscribed. Notification of a visit event: the visitor is about to visit the children of a non-terminal node

Parameters:

  • _parent (NonTerminalNode)
  • _children (Array)

    array of children nodes



41
42
43
44
# File 'lib/rley/formatter/asciitree.rb', line 41

def before_subnodes(parent, children)
  rank_of(parent)
  curr_path << parent
end

#before_terminal(aTerm) ⇒ Object

Method called by a ParseTreeVisitor to which the formatter subscribed. Notification of a visit event: the visitor is about to visit a terminal node

Parameters:

  • _term (TerminalNode)


60
61
62
# File 'lib/rley/formatter/asciitree.rb', line 60

def before_terminal(aTerm)
  emit(aTerm, ": '#{aTerm.token.lexeme}'")
end