Class: Rley::GFG::StartVertex

Inherits:
NonTerminalVertex show all
Defined in:
lib/rley/gfg/start_vertex.rb

Overview

TODO: change definition. Represents a specialized vertex in a grammar flow graph that is associated to a given non-terminal symbol. Responsibilities (in addition to inherited ones):

  • Know its related non-terminal symbol

Instance Attribute Summary

Attributes inherited from NonTerminalVertex

#non_terminal

Attributes inherited from Vertex

#edges

Instance Method Summary collapse

Methods inherited from Vertex

#add_edge, #complete?, #next_symbol, #prev_symbol

Constructor Details

#initialize(aNonTerminal) ⇒ StartVertex

Returns a new instance of StartVertex.



11
12
13
# File 'lib/rley/gfg/start_vertex.rb', line 11

def initialize(aNonTerminal)
  super(aNonTerminal)
end

Instance Method Details

#labelObject



15
16
17
# File 'lib/rley/gfg/start_vertex.rb', line 15

def label()
  return ".#{non_terminal}"
end