You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The values of an expression pragma are the values of the expression.
1321
+
1322
+
The type `only_bind_out` hints that uses the result of the expression pragma should not be used to guide the evaluation of the result of the contained expression.
1323
+
When checking to see that all values are bound the compiler does not assume that if the result of the expression pragma is bound then the result of the contained
1324
+
expression is bound.
1325
+
1326
+
The type `only_bind_into` hints that uses the result of expression pragma should not be used to guide the evaluation of the result of the expression pragma.
1327
+
When checking to see that all values are bound the compiler does not assume that if the result of the contained expression is bound then the result of the
1328
+
expression pragma is bound.
1329
+
1309
1330
Ranges
1310
1331
~~~~~~
1311
1332
@@ -2131,6 +2152,7 @@ The complete grammar for QL is as follows:
2131
2152
| postfix_cast
2132
2153
| callwithresults
2133
2154
| aggregation
2155
+
| expression_pragma
2134
2156
| any
2135
2157
| range
2136
2158
| setliteral
@@ -2162,6 +2184,10 @@ The complete grammar for QL is as follows:
0 commit comments