nushell/crates/nu-protocol/src/ast
JT 0c656fd276
Revert "Pipeline operators: && and ||" (#7452)
Reverts nushell/nushell#7448

Some surprising behavior in how we do this. For example:

```
〉if (true || false) { print "yes!" } else { print "no!" }
no!
〉if (true or false) { print "yes!" } else { print "no!" }
yes!
```

This means for folks who are using the old `||`, they possibly get the
wrong answer once they upgrade. I don't think we can ship with that as
it will catch too many people by surprise and just make it easier to
write buggy code.
2022-12-13 16:36:13 +13:00
..
block.rs Remove statements, replaced by pipelines (#4482) 2022-02-15 14:31:14 -05:00
call.rs Fix scoped overlay use not finding a module (#6474) 2022-09-04 18:36:42 +03:00
cell_path.rs Address lints from clippy for beta/nightly (#5709) 2022-06-04 18:47:36 +12:00
expr.rs Make external command substitution works friendly(like fish shell, trailing ending newlines) (#7156) 2022-11-23 16:51:57 +13:00
expression.rs Add logical xor operator (#7242) 2022-11-26 17:02:37 +01:00
import_pattern.rs Protocol: debug_assert!() Span to reflect a valid slice (#6806) 2022-12-03 11:44:12 +02:00
mod.rs Remove statements, replaced by pipelines (#4482) 2022-02-15 14:31:14 -05:00
operator.rs ++= appendAssign operator (#7346) (#7354) 2022-12-09 11:20:58 -05:00
pipeline.rs Revert "Pipeline operators: && and ||" (#7452) 2022-12-13 16:36:13 +13:00