Andrew Kelley feb90f6ed4 AstGen: emit debug stmt for try
This improves the following test case:

```zig
pub fn main() !void {
    try foo();
}

fn foo() !void {
    return error.Bad;
}
```

The error return trace now points to the `try` token instead of pointing
to the foo() function call, matching stage1.

Closes #12308.
2022-08-08 21:12:04 -07:00
..
2022-08-07 16:07:25 -07:00
2020-10-31 12:21:49 +02:00
2022-07-23 10:08:51 +02:00