class Srgs::Token

Attributes

display[RW]
pron[RW]
text[RW]

Public Class Methods

new(text, display = nil, pron = nil) click to toggle source
# File lib/srgs/elements/token.rb, line 6
def initialize(text, display = nil, pron = nil)
  @text = text
  @display = display
  @pron = pron
end