MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / par_and

Function par_and

src/gpre/exp.cpp:1065–1073  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1063//
1064
1065static gpre_nod* par_and( gpre_req* request)
1066{
1067 gpre_nod* expr1 = par_not(request);
1068
1069 if (!MSC_match(KW_AND))
1070 return expr1;
1071
1072 return MSC_binary(nod_and, expr1, par_and(request));
1073}
1074
1075
1076//____________________________________________________________

Callers 1

par_booleanFunction · 0.70

Calls 3

MSC_matchFunction · 0.85
MSC_binaryFunction · 0.85
par_notFunction · 0.70

Tested by

no test coverage detected