def translate_pat_Name_constructor(self, ctx, pat, scrutinee_trans):
lbl = pat.id
condition = ast.Compare(
left=scrutinee_trans,
ops=[ast.Eq()],
comparators=[ast.Str(s=lbl)])
return condition, _util.odict()