chore: prepare changelog for release
This commit is contained in:
parent
1b8e94fe32
commit
77a627817b
|
@ -1,6 +1,6 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## v1.0.13-alpha - unreleased
|
## v1.0.13-alpha - 2023-07-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
|
|
@ -81,4 +81,9 @@ mod tests {
|
||||||
fn expect_bool_sugar() {
|
fn expect_bool_sugar() {
|
||||||
assert_expr!("expect something.field == wow");
|
assert_expr!("expect something.field == wow");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn expect_trace_if_false() {
|
||||||
|
assert_expr!("expect foo?");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
source: crates/aiken-lang/src/parser/expr/assignment.rs
|
||||||
|
description: "Code:\n\nexpect foo?"
|
||||||
|
---
|
||||||
|
Assignment {
|
||||||
|
location: 0..11,
|
||||||
|
value: TraceIfFalse {
|
||||||
|
location: 7..11,
|
||||||
|
value: Var {
|
||||||
|
location: 7..10,
|
||||||
|
name: "foo",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
pattern: Constructor {
|
||||||
|
is_record: false,
|
||||||
|
location: 0..11,
|
||||||
|
name: "True",
|
||||||
|
arguments: [],
|
||||||
|
module: None,
|
||||||
|
constructor: (),
|
||||||
|
with_spread: false,
|
||||||
|
tipo: (),
|
||||||
|
},
|
||||||
|
kind: Expect,
|
||||||
|
annotation: None,
|
||||||
|
}
|
Loading…
Reference in New Issue