Class: RBNF::Term

Inherits:
Unary
  • Object
show all
Defined in:
lib/rbnf/nodes.rb

Overview

Terminal node

Constant Summary

Constants included from RBNF

DEFS, VERSION

Instance Attribute Summary

Attributes inherited from Unary

#a

Instance Method Summary collapse

Methods inherited from Unary

#initialize

Methods included from RBNF

#=~, [], #alt, #cat, #comps, def, define, dememoize, #except, #group, method_missing, #opt, #rep, #rep_n

Constructor Details

This class inherits a constructor from RBNF::Unary

Instance Method Details

#match(s) ⇒ Object



117
118
119
# File 'lib/rbnf/nodes.rb', line 117

def match(s)
  s==a
end

#to_sObject



114
115
116
# File 'lib/rbnf/nodes.rb', line 114

def to_s
  "\"#{a}\""
end