aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates
diff options
context:
space:
mode:
Diffstat (limited to 'testing/templates')
-rw-r--r--testing/templates/operators.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/templates/operators.html b/testing/templates/operators.html
index 750f0aa..1488b9a 100644
--- a/testing/templates/operators.html
+++ b/testing/templates/operators.html
@@ -7,3 +7,27 @@
{% if a % c == b -%}
mod
{%- endif -%}
+{% if a + b == c -%}
+ add
+{%- endif -%}
+{% if a << b == c -%}
+ rsh
+{%- endif -%}
+{% if c >> b == a -%}
+ lsh
+{%- endif -%}
+{% if a & b == b -%}
+ band
+{%- endif -%}
+{% if b ^ c == a + c -%}
+ bxor
+{%- endif -%}
+{% if b | c == a + c -%}
+ bor
+{%- endif -%}
+{% if a == b && a + b == c -%}
+ and
+{%- endif -%}
+{% if a == c || a == b -%}
+ or
+{%- endif -%}