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 b353bcb commit db4f131Copy full SHA for db4f131
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: d5fc01caefed33c9633e8d26f4901f3e34a21f48
+refs/heads/master: a7c4c19d4bea6d84f63709218146f7be76d5c9f2
trunk/src/comp/front/ast.rs
@@ -173,6 +173,14 @@ fn binop_to_str(binop op) -> str {
173
}
174
175
176
+pred lazy_binop(binop b) -> bool {
177
+ alt (b) {
178
+ case (and) { true }
179
+ case (or) { true }
180
+ case (_) { false }
181
+ }
182
+}
183
+
184
tag unop { box(mutability); deref; not; neg; }
185
186
fn unop_to_str(unop op) -> str {
0 commit comments