class Swift::Boiler::Token

Constants

TYPE

Attributes

content[RW]
type[RW]

Public Class Methods

new(type, content) click to toggle source
# File lib/swift/boiler/token.rb, line 8
def initialize (type, content)
    @type = type
    @content = content 
end