tamer: asg::air: Test formatting (token nesting)

This makes the tests quite a bit easier to understand visually.  I've been
doing this with all new tests but had to go back to some old ones, and still
have more to go back to.  Baby steps.

DEV-13708
Mike Gerwitz 2023-03-22 11:07:35 -04:00
parent 91b787d367
commit 7a9cf6bc51
2 changed files with 285 additions and 212 deletions

View File

@ -45,6 +45,7 @@ pub fn collect_subexprs(
fn expr_empty_ident() { fn expr_empty_ident() {
let id = SPair("foo".into(), S2); let id = SPair("foo".into(), S2);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id), Air::BindIdent(id),
@ -89,6 +90,7 @@ fn expr_without_pkg() {
fn close_pkg_mid_expr() { fn close_pkg_mid_expr() {
let id = SPair("foo".into(), S4); let id = SPair("foo".into(), S4);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::PkgStart(S1), Air::PkgStart(S1),
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
@ -101,13 +103,15 @@ fn close_pkg_mid_expr() {
]; ];
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Err(ParseError::StateError(AsgError::InvalidPkgEndContext(S3))), Err(ParseError::StateError(AsgError::InvalidPkgEndContext(S3))),
// RECOVERY: We should be able to close the package if we just // RECOVERY: We should be able to close the package if we
// finish the expression first, // just finish the expression first,
// demonstrating that recovery properly maintains all state. // demonstrating that recovery properly maintains all
// state.
Ok(Parsed::Incomplete), // BindIdent Ok(Parsed::Incomplete), // BindIdent
Ok(Parsed::Incomplete), // ExprEnd Ok(Parsed::Incomplete), // ExprEnd
// Successful close here. // Successful close here.
@ -121,6 +125,7 @@ fn close_pkg_mid_expr() {
fn open_pkg_mid_expr() { fn open_pkg_mid_expr() {
let id = SPair("foo".into(), S4); let id = SPair("foo".into(), S4);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::PkgStart(S1), Air::PkgStart(S1),
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
@ -133,6 +138,7 @@ fn open_pkg_mid_expr() {
]; ];
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
@ -155,13 +161,17 @@ fn expr_non_empty_ident_root() {
let id_a = SPair("foo".into(), S2); let id_a = SPair("foo".into(), S2);
let id_b = SPair("bar".into(), S2); let id_b = SPair("bar".into(), S2);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
// Identifier while still empty... // Identifier while still empty...
Air::BindIdent(id_a), Air::BindIdent(id_a),
Air::ExprStart(ExprOp::Sum, S3), Air::ExprStart(ExprOp::Sum, S3),
// (note that the inner expression _does not_ have an ident binding) // (note that the inner expression _does not_ have an ident
// binding)
Air::ExprEnd(S4), Air::ExprEnd(S4),
// ...and an identifier non-empty. // ...and an identifier non-empty.
Air::BindIdent(id_b), Air::BindIdent(id_b),
Air::ExprEnd(S6), Air::ExprEnd(S6),
@ -187,11 +197,13 @@ fn expr_non_empty_ident_root() {
fn expr_non_empty_bind_only_after() { fn expr_non_empty_bind_only_after() {
let id = SPair("foo".into(), S2); let id = SPair("foo".into(), S2);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
// Expression root is still dangling at this point. // Expression root is still dangling at this point.
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
Air::ExprEnd(S3), Air::ExprEnd(S3),
// We only bind an identifier _after_ we've created the expression, // We only bind an identifier _after_ we've created the expression,
// which should cause the still-dangling root to become // which should cause the still-dangling root to become
// reachable. // reachable.
@ -225,6 +237,7 @@ fn expr_dangling_no_subexpr() {
let full_span = S1.merge(S2).unwrap(); let full_span = S1.merge(S2).unwrap();
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
@ -238,6 +251,7 @@ fn expr_dangling_no_subexpr() {
#[test] #[test]
fn expr_dangling_with_subexpr() { fn expr_dangling_with_subexpr() {
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
// Expression root is still dangling at this point. // Expression root is still dangling at this point.
@ -251,11 +265,12 @@ fn expr_dangling_with_subexpr() {
let full_span = S1.merge(S4).unwrap(); let full_span = S1.merge(S4).unwrap();
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprEnd
Err(ParseError::StateError(AsgError::DanglingExpr(full_span))), Err(ParseError::StateError(AsgError::DanglingExpr(full_span))),
// RECOVERY // RECOVERY
Ok(Parsed::Incomplete), // PkgEnd Ok(Parsed::Incomplete), // PkgEnd
@ -268,13 +283,14 @@ fn expr_dangling_with_subexpr() {
fn expr_dangling_with_subexpr_ident() { fn expr_dangling_with_subexpr_ident() {
let id = SPair("foo".into(), S3); let id = SPair("foo".into(), S3);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
// Expression root is still dangling at this point. // Expression root is still dangling at this point.
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
// The _inner_ expression receives an identifier, // The _inner_ expression receives an identifier,
// but that should have no impact on the dangling status of the // but that should have no impact on the dangling status of
// root, // the root,
// especially given that subexpressions are always reachable // especially given that subexpressions are always reachable
// anyway. // anyway.
Air::BindIdent(id), Air::BindIdent(id),
@ -287,12 +303,13 @@ fn expr_dangling_with_subexpr_ident() {
let full_span = S1.merge(S5).unwrap(); let full_span = S1.merge(S5).unwrap();
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // BindIndent
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete), // ExprEnd
Err(ParseError::StateError(AsgError::DanglingExpr(full_span))), Err(ParseError::StateError(AsgError::DanglingExpr(full_span))),
// RECOVERY // RECOVERY
Ok(Parsed::Incomplete), // PkgEnd Ok(Parsed::Incomplete), // PkgEnd
@ -308,11 +325,14 @@ fn expr_dangling_with_subexpr_ident() {
#[test] #[test]
fn expr_reachable_subsequent_dangling() { fn expr_reachable_subsequent_dangling() {
let id = SPair("foo".into(), S2); let id = SPair("foo".into(), S2);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// Reachable // Reachable
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id), Air::BindIdent(id),
Air::ExprEnd(S3), Air::ExprEnd(S3),
// Dangling // Dangling
Air::ExprStart(ExprOp::Sum, S4), Air::ExprStart(ExprOp::Sum, S4),
Air::ExprEnd(S5), Air::ExprEnd(S5),
@ -323,11 +343,14 @@ fn expr_reachable_subsequent_dangling() {
let second_span = S4.merge(S5).unwrap(); let second_span = S4.merge(S5).unwrap();
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
// Reachable
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
// Dangling
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
Err(ParseError::StateError(AsgError::DanglingExpr(second_span))), Err(ParseError::StateError(AsgError::DanglingExpr(second_span))),
// RECOVERY // RECOVERY
@ -341,10 +364,13 @@ fn expr_reachable_subsequent_dangling() {
#[test] #[test]
fn recovery_expr_reachable_after_dangling() { fn recovery_expr_reachable_after_dangling() {
let id = SPair("foo".into(), S4); let id = SPair("foo".into(), S4);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// Dangling // Dangling
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::ExprEnd(S2), Air::ExprEnd(S2),
// Reachable, after error from dangling. // Reachable, after error from dangling.
Air::ExprStart(ExprOp::Sum, S3), Air::ExprStart(ExprOp::Sum, S3),
Air::BindIdent(id), Air::BindIdent(id),
@ -357,10 +383,12 @@ fn recovery_expr_reachable_after_dangling() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
Err(ParseError::StateError(AsgError::DanglingExpr(err_span))), Err(ParseError::StateError(AsgError::DanglingExpr(err_span))),
// RECOVERY: continue at this point with the next expression. // RECOVERY: continue at this point with the next expression.
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
Ok(Parsed::Incomplete), Ok(Parsed::Incomplete),
@ -390,14 +418,17 @@ fn recovery_expr_reachable_after_dangling() {
fn expr_close_unbalanced() { fn expr_close_unbalanced() {
let id = SPair("foo".into(), S3); let id = SPair("foo".into(), S3);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// Close before _any_ open. // Close before _any_ open.
Air::ExprEnd(S1), Air::ExprEnd(S1),
// Should recover, // Should recover,
// allowing for a normal expr. // allowing for a normal expr.
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
Air::BindIdent(id), Air::BindIdent(id),
Air::ExprEnd(S4), Air::ExprEnd(S4),
// And now an extra close _after_ a valid expr. // And now an extra close _after_ a valid expr.
Air::ExprEnd(S5), Air::ExprEnd(S5),
]; ];
@ -405,13 +436,16 @@ fn expr_close_unbalanced() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Err(ParseError::StateError(AsgError::UnbalancedExpr(S1))), Err(ParseError::StateError(AsgError::UnbalancedExpr(S1))),
// RECOVERY // RECOVERY
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), // BindIdent Ok(Parsed::Incomplete), // BindIdent
Ok(Parsed::Incomplete), // ExprEnd Ok(Parsed::Incomplete), // ExprEnd
// Another error after a successful expression. // Another error after a successful expression.
Err(ParseError::StateError(AsgError::UnbalancedExpr(S5))), Err(ParseError::StateError(AsgError::UnbalancedExpr(S5))),
// RECOVERY // RECOVERY
@ -434,6 +468,7 @@ fn expr_bind_to_empty() {
let id_good = SPair("good".into(), S6); let id_good = SPair("good".into(), S6);
let id_noexpr_b = SPair("noexpr_b".into(), S8); let id_noexpr_b = SPair("noexpr_b".into(), S8);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// We need to first bring ourselves out of the context of the // We need to first bring ourselves out of the context of the
// package header, // package header,
@ -442,12 +477,15 @@ fn expr_bind_to_empty() {
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_pre), Air::BindIdent(id_pre),
Air::ExprEnd(S3), Air::ExprEnd(S3),
// No open expression to bind to. // No open expression to bind to.
Air::BindIdent(id_noexpr_a), Air::BindIdent(id_noexpr_a),
// Post-recovery create an expression. // Post-recovery create an expression.
Air::ExprStart(ExprOp::Sum, S5), Air::ExprStart(ExprOp::Sum, S5),
Air::BindIdent(id_good), Air::BindIdent(id_good),
Air::ExprEnd(S7), Air::ExprEnd(S7),
// Once again we have nothing to bind to. // Once again we have nothing to bind to.
Air::BindIdent(id_noexpr_b), Air::BindIdent(id_noexpr_b),
]; ];
@ -455,12 +493,14 @@ fn expr_bind_to_empty() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
// Just to get out of a package header context // Just to get out of a package header context
Ok(Parsed::Incomplete), // ExprStart (pre) Ok(Parsed::Incomplete), // ExprStart (pre)
Ok(Parsed::Incomplete), // BindIdent (pre) Ok(Parsed::Incomplete), // BindIdent (pre)
Ok(Parsed::Incomplete), // ExprEnd (pre) Ok(Parsed::Incomplete), // ExprEnd (pre)
// Now that we've encountered an expression, // Now that we've encountered an expression,
// we want an error specific to expression binding, // we want an error specific to expression binding,
// since it's likely that a bind token was issued too late, // since it's likely that a bind token was issued too late,
@ -469,10 +509,12 @@ fn expr_bind_to_empty() {
Err(ParseError::StateError(AsgError::InvalidExprBindContext( Err(ParseError::StateError(AsgError::InvalidExprBindContext(
id_noexpr_a id_noexpr_a
))), ))),
// RECOVERY // RECOVERY
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), // BindIdent Ok(Parsed::Incomplete), // BindIdent
Ok(Parsed::Incomplete), // ExprEnd Ok(Parsed::Incomplete), // ExprEnd
// Another error after a successful expression. // Another error after a successful expression.
Err(ParseError::StateError(AsgError::InvalidExprBindContext( Err(ParseError::StateError(AsgError::InvalidExprBindContext(
id_noexpr_b id_noexpr_b
@ -504,16 +546,20 @@ fn expr_bind_to_empty() {
fn sibling_subexprs_have_ordered_edges_to_parent() { fn sibling_subexprs_have_ordered_edges_to_parent() {
let id_root = SPair("root".into(), S1); let id_root = SPair("root".into(), S1);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
// Identify the root so that it is not dangling. // Identify the root so that it is not dangling.
Air::BindIdent(id_root), Air::BindIdent(id_root),
// Sibling A // Sibling A
Air::ExprStart(ExprOp::Sum, S3), Air::ExprStart(ExprOp::Sum, S3),
Air::ExprEnd(S4), Air::ExprEnd(S4),
// Sibling B // Sibling B
Air::ExprStart(ExprOp::Sum, S5), Air::ExprStart(ExprOp::Sum, S5),
Air::ExprEnd(S6), Air::ExprEnd(S6),
// Sibling C // Sibling C
Air::ExprStart(ExprOp::Sum, S7), Air::ExprStart(ExprOp::Sum, S7),
Air::ExprEnd(S8), Air::ExprEnd(S8),
@ -549,11 +595,14 @@ fn nested_subexprs_related_to_relative_parent() {
let id_root = SPair("root".into(), S1); let id_root = SPair("root".into(), S1);
let id_suba = SPair("suba".into(), S2); let id_suba = SPair("suba".into(), S2);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), // 0 Air::ExprStart(ExprOp::Sum, S1), // 0
Air::BindIdent(id_root), Air::BindIdent(id_root),
Air::ExprStart(ExprOp::Sum, S2), // 1 Air::ExprStart(ExprOp::Sum, S2), // 1
Air::BindIdent(id_suba), Air::BindIdent(id_suba),
Air::ExprStart(ExprOp::Sum, S3), // 2 Air::ExprStart(ExprOp::Sum, S3), // 2
Air::ExprEnd(S4), Air::ExprEnd(S4),
Air::ExprEnd(S5), Air::ExprEnd(S5),
@ -585,9 +634,11 @@ fn expr_redefine_ident() {
let id_first = SPair("foo".into(), S2); let id_first = SPair("foo".into(), S2);
let id_dup = SPair("foo".into(), S3); let id_dup = SPair("foo".into(), S3);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_first), Air::BindIdent(id_first),
Air::ExprStart(ExprOp::Sum, S3), Air::ExprStart(ExprOp::Sum, S3),
Air::BindIdent(id_dup), Air::BindIdent(id_dup),
Air::ExprEnd(S4), Air::ExprEnd(S4),
@ -597,6 +648,7 @@ fn expr_redefine_ident() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
@ -634,16 +686,19 @@ fn expr_still_dangling_on_redefine() {
let id_dup2 = SPair("foo".into(), S8); let id_dup2 = SPair("foo".into(), S8);
let id_second = SPair("bar".into(), S9); let id_second = SPair("bar".into(), S9);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// First expr (OK) // First expr (OK)
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_first), Air::BindIdent(id_first),
Air::ExprEnd(S3), Air::ExprEnd(S3),
// Second expr should still dangle due to use of duplicate // Second expr should still dangle due to use of duplicate
// identifier // identifier
Air::ExprStart(ExprOp::Sum, S4), Air::ExprStart(ExprOp::Sum, S4),
Air::BindIdent(id_dup), Air::BindIdent(id_dup),
Air::ExprEnd(S6), Air::ExprEnd(S6),
// Third expr will error on redefine but then be successful. // Third expr will error on redefine but then be successful.
// This probably won't happen in practice with TAME's original // This probably won't happen in practice with TAME's original
// source language, // source language,
@ -657,11 +712,13 @@ fn expr_still_dangling_on_redefine() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), // BindIdent (first) Ok(Parsed::Incomplete), // BindIdent (first)
Ok(Parsed::Incomplete), // ExprEnd Ok(Parsed::Incomplete), // ExprEnd
// Beginning of second expression // Beginning of second expression
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Err(ParseError::StateError(AsgError::IdentRedefine( Err(ParseError::StateError(AsgError::IdentRedefine(
@ -674,6 +731,7 @@ fn expr_still_dangling_on_redefine() {
Err(ParseError::StateError(AsgError::DanglingExpr( Err(ParseError::StateError(AsgError::DanglingExpr(
S4.merge(S6).unwrap() S4.merge(S6).unwrap()
))), ))),
// RECOVERY: But we'll continue onto one final expression, // RECOVERY: But we'll continue onto one final expression,
// which we will fail to define but then subsequently define // which we will fail to define but then subsequently define
// successfully. // successfully.
@ -711,13 +769,16 @@ fn expr_ref_to_ident() {
let id_foo = SPair("foo".into(), S2); let id_foo = SPair("foo".into(), S2);
let id_bar = SPair("bar".into(), S6); let id_bar = SPair("bar".into(), S6);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_foo), Air::BindIdent(id_foo),
// Reference to an as-of-yet-undefined id (okay), // Reference to an as-of-yet-undefined id (okay),
// with a different span than `id_bar`. // with a different span than `id_bar`.
Air::RefIdent(SPair("bar".into(), S3)), Air::RefIdent(SPair("bar".into(), S3)),
Air::ExprEnd(S4), Air::ExprEnd(S4),
// //
// Another expression to reference the first // Another expression to reference the first
// (we don't handle cyclic references until a topological sort, // (we don't handle cyclic references until a topological sort,
@ -764,14 +825,17 @@ fn expr_ref_outside_of_expr_context() {
let id_pre = SPair("pre".into(), S2); let id_pre = SPair("pre".into(), S2);
let id_foo = SPair("foo".into(), S4); let id_foo = SPair("foo".into(), S4);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
// We need to first bring ourselves out of the context of the // We need to first bring ourselves out of the context of the
// package header. // package header.
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_pre), Air::BindIdent(id_pre),
Air::ExprEnd(S3), Air::ExprEnd(S3),
// This will fail since we're not in an expression context. // This will fail since we're not in an expression context.
Air::RefIdent(id_foo), Air::RefIdent(id_foo),
// RECOVERY: Simply ignore the above. // RECOVERY: Simply ignore the above.
Air::ExprStart(ExprOp::Sum, S1), Air::ExprStart(ExprOp::Sum, S1),
Air::BindIdent(id_foo), Air::BindIdent(id_foo),
@ -781,15 +845,18 @@ fn expr_ref_outside_of_expr_context() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), // BindIdent Ok(Parsed::Incomplete), // BindIdent
Ok(Parsed::Incomplete), // ExprEnd Ok(Parsed::Incomplete), // ExprEnd
// Now we're past the header and in expression parsing mode. // Now we're past the header and in expression parsing mode.
Err(ParseError::StateError(AsgError::InvalidExprRefContext( Err(ParseError::StateError(AsgError::InvalidExprRefContext(
id_foo id_foo
))), ))),
// RECOVERY: Proceed as normal // RECOVERY: Proceed as normal
Ok(Parsed::Incomplete), // ExprStart Ok(Parsed::Incomplete), // ExprStart
Ok(Parsed::Incomplete), // BindIdent Ok(Parsed::Incomplete), // BindIdent
@ -814,10 +881,12 @@ fn idents_share_defining_pkg() {
let id_baz = SPair("baz".into(), S6); let id_baz = SPair("baz".into(), S6);
// An expression nested within another. // An expression nested within another.
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::PkgStart(S1), Air::PkgStart(S1),
Air::ExprStart(ExprOp::Sum, S2), Air::ExprStart(ExprOp::Sum, S2),
Air::BindIdent(id_foo), Air::BindIdent(id_foo),
Air::ExprStart(ExprOp::Sum, S4), Air::ExprStart(ExprOp::Sum, S4),
Air::BindIdent(id_bar), Air::BindIdent(id_bar),
Air::RefIdent(id_baz), Air::RefIdent(id_baz),

View File

@ -36,6 +36,7 @@ type Sut = AirAggregate;
fn tpl_defining_pkg() { fn tpl_defining_pkg() {
let id_tpl = SPair("_tpl_".into(), S3); let id_tpl = SPair("_tpl_".into(), S3);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::PkgStart(S1), Air::PkgStart(S1),
// This also tests tpl as a transition away from the package header. // This also tests tpl as a transition away from the package header.
@ -160,6 +161,7 @@ fn tpl_within_expr() {
fn close_tpl_without_open() { fn close_tpl_without_open() {
let id_tpl = SPair("_tpl_".into(), S3); let id_tpl = SPair("_tpl_".into(), S3);
#[rustfmt::skip]
let toks = vec![ let toks = vec![
Air::TplEnd(S1), Air::TplEnd(S1),
// RECOVERY: Try again. // RECOVERY: Try again.
@ -169,6 +171,7 @@ fn close_tpl_without_open() {
]; ];
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Err(ParseError::StateError(AsgError::UnbalancedTpl(S1))), Err(ParseError::StateError(AsgError::UnbalancedTpl(S1))),
@ -339,6 +342,7 @@ fn unreachable_anonymous_tpl() {
let mut sut = parse_as_pkg_body(toks); let mut sut = parse_as_pkg_body(toks);
assert_eq!( assert_eq!(
#[rustfmt::skip]
vec![ vec![
Ok(Parsed::Incomplete), // PkgStart Ok(Parsed::Incomplete), // PkgStart
Ok(Parsed::Incomplete), // TplStart Ok(Parsed::Incomplete), // TplStart