| Index: lib/src/prism/tests/languages/tcl/operator_feature.test
 | 
| diff --git a/lib/src/prism/tests/languages/tcl/operator_feature.test b/lib/src/prism/tests/languages/tcl/operator_feature.test
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..84426a0a84c2454f25d0ac653cee3f89f5ae5772
 | 
| --- /dev/null
 | 
| +++ b/lib/src/prism/tests/languages/tcl/operator_feature.test
 | 
| @@ -0,0 +1,45 @@
 | 
| ++
 | 
| +-
 | 
| +~
 | 
| +! !=
 | 
| +* **
 | 
| +/
 | 
| +%
 | 
| +< <= <<
 | 
| +> >= >>
 | 
| +==
 | 
| +& &&
 | 
| +| ||
 | 
| +?
 | 
| +^
 | 
| +eq
 | 
| +ne
 | 
| +in
 | 
| +ni
 | 
| +
 | 
| +----------------------------------------------------
 | 
| +
 | 
| +[
 | 
| +	["operator", "+"],
 | 
| +	["operator", "-"],
 | 
| +	["operator", "~"],
 | 
| +	["operator", "!"], ["operator", "!="],
 | 
| +	["operator", "*"], ["operator", "**"],
 | 
| +	["operator", "/"],
 | 
| +	["operator", "%"],
 | 
| +	["operator", "<"], ["operator", "<="], ["operator", "<<"],
 | 
| +	["operator", ">"], ["operator", ">="], ["operator", ">>"],
 | 
| +	["operator", "=="],
 | 
| +	["operator", "&"], ["operator", "&&"],
 | 
| +	["operator", "|"], ["operator", "||"],
 | 
| +	["operator", "?"],
 | 
| +	["operator", "^"],
 | 
| +	["operator", "eq"],
 | 
| +	["operator", "ne"],
 | 
| +	["operator", "in"],
 | 
| +	["operator", "ni"]
 | 
| +]
 | 
| +
 | 
| +----------------------------------------------------
 | 
| +
 | 
| +Checks for all operators.
 | 
| 
 |