def t_STRING_LITERAL(self, t):
col = t.value[0]
value = t.value[1:-1].replace("\\%s"%col, col)
t.value = value
return t
# @TOKEN(bad_string_literal)
# def t_BAD_STRING_LITERAL(self, t):
# self._error("????????????", t)