class Sass::Script::Parser

def variable

def variable
  start_pos = source_position
  c = try_tok(:const)
  return string unless c
  node(Tree::Variable.new(*c.value), start_pos)
end