| Index: lib/src/prism/tests/languages/autohotkey/operator_feature.test
|
| diff --git a/lib/src/prism/tests/languages/autohotkey/operator_feature.test b/lib/src/prism/tests/languages/autohotkey/operator_feature.test
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ec9e23eda1a3e8c21c5b3459289323b4c5d5fbb6
|
| --- /dev/null
|
| +++ b/lib/src/prism/tests/languages/autohotkey/operator_feature.test
|
| @@ -0,0 +1,33 @@
|
| ++ - * /
|
| += ? & |
|
| +< >
|
| +++ -- ** //
|
| +! ~ ^ .
|
| +<< >> <= >=
|
| +~= == <> !=
|
| +NOT AND && OR ||
|
| +:= += -= *=
|
| +/= //= .=
|
| +|= &= ^=
|
| +>>= <<=
|
| +
|
| +----------------------------------------------------
|
| +
|
| +[
|
| + ["operator", "+"], ["operator", "-"], ["operator", "*"], ["operator", "/"],
|
| + ["operator", "="], ["operator", "?"], ["operator", "&"], ["operator", "|"],
|
| + ["operator", "<"], ["operator", ">"],
|
| + ["operator", "++"], ["operator", "--"], ["operator", "**"], ["operator", "//"],
|
| + ["operator", "!"], ["operator", "~"], ["operator", "^"], ["operator", "."],
|
| + ["operator", "<<"], ["operator", ">>"], ["operator", "<="], ["operator", ">="],
|
| + ["operator", "~="], ["operator", "=="], ["operator", "<>"], ["operator", "!="],
|
| + ["operator", "NOT"], ["operator", "AND"], ["operator", "&&"], ["operator", "OR"], ["operator", "||"],
|
| + ["operator", ":="], ["operator", "+="], ["operator", "-="], ["operator", "*="],
|
| + ["operator", "/="], ["operator", "//="], ["operator", ".="],
|
| + ["operator", "|="], ["operator", "&="], ["operator", "^="],
|
| + ["operator", ">>="], ["operator", "<<="]
|
| +]
|
| +
|
| +----------------------------------------------------
|
| +
|
| +Checks for all operators.
|
|
|