class Syntax::Token

def initialize( text, group, instruction = :none )

given group.
Create a new Token representing the given text, and belonging to the
def initialize( text, group, instruction = :none )
  super text
  @group = group
  @instruction = instruction
end