We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e25720f commit 4c2e56eCopy full SHA for 4c2e56e
src/org/sosy_lab/java_smt/basicimpl/Tokenizer.java
@@ -238,8 +238,8 @@ public static boolean isExitToken(String token) {
238
*/
239
public static boolean isForbiddenToken(String token) {
240
return isPushToken(token)
241
- | isPopToken(token)
242
- | isResetAssertionsToken(token)
243
- | isResetToken(token);
+ || isPopToken(token)
+ || isResetAssertionsToken(token)
+ || isResetToken(token);
244
}
245
0 commit comments