class Token

Attributes

type[R]
value[R]

Public Class Methods

new(type, value) click to toggle source
# File bin/twitter-algebra, line 47
def initialize(type, value)
  @type = type
  @value = value
end