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
thrownewError(`It is not allowed to have an or expression here due to lack of parens! For example "a && (b||c)" is not supported, use "(a&&b) || (a&&c)" instead.`);
615
-
}
606
+
if(einstanceofContextKeyAndExpr){
607
+
expr=expr.concat(e.expr);
608
+
continue;
609
+
}
616
610
617
-
expr.push(e);
611
+
if(einstanceofContextKeyOrExpr){
612
+
// Not allowed, because we don't have parens!
613
+
thrownewError(`It is not allowed to have an or expression here due to lack of parens! For example "a && (b||c)" is not supported, use "(a&&b) || (a&&c)" instead.`);
0 commit comments