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

Function par_boolean

src/gpre/exp.cpp:1174–1182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1172//
1173
1174static gpre_nod* par_boolean( gpre_req* request)
1175{
1176 gpre_nod* expr1 = par_and(request);
1177
1178 if (!MSC_match(KW_OR) && !MSC_match(KW_OR1))
1179 return expr1;
1180
1181 return MSC_binary(nod_or, expr1, par_boolean(request));
1182}
1183
1184
1185//____________________________________________________________

Callers 2

EXP_rseFunction · 0.85
par_notFunction · 0.85

Calls 3

MSC_matchFunction · 0.85
MSC_binaryFunction · 0.85
par_andFunction · 0.70

Tested by

no test coverage detected