Add missing verify*** transformation statements to parser

This commit is contained in:
Victor Hora
2018-03-04 17:04:03 -05:00
committed by Felipe Zimmerle
parent 8bb64c3ee3
commit a66acebc05
4 changed files with 892 additions and 944 deletions

View File

@@ -956,13 +956,11 @@ op_before_init:
}
| OPERATOR_VERIFY_CPF run_time_string
{
/* $$ = new operators::VerifyCPF($1); */
OPERATOR_NOT_SUPPORTED("VerifyCPF", @0);
OPERATOR_CONTAINER($$, new operators::VerifyCPF(std::move($2)));
}
| OPERATOR_VERIFY_SSN run_time_string
{
/* $$ = new operators::VerifySSN($1); */
OPERATOR_NOT_SUPPORTED("VerifySSN", @0);
OPERATOR_CONTAINER($$, new operators::VerifySSN(std::move($2)));
}
| OPERATOR_GSB_LOOKUP run_time_string
{