From df3bb8028a7cd8a69a3c76090d12f808ca7abc3b Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sun, 7 Jun 2020 22:23:23 +0100 Subject: fix corner cases related to `in` (#3964) --- lib/output.js | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/output.js') diff --git a/lib/output.js b/lib/output.js index 62050b4d..a9e0ca7b 100644 --- a/lib/output.js +++ b/lib/output.js @@ -305,6 +305,7 @@ function OutputStream(options) { || (ch == "/" && ch == prev) || ((ch == "+" || ch == "-") && ch == last) || str == "--" && last == "!" + || str == "in" && prev == "/" || last == "--" && ch == ">") { OUTPUT += " "; current_col++; -- cgit v1.2.3