commit | 206edfb8ef062a34b9a536b0af4458709d6fdd01 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sat Sep 01 16:02:20 2018 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sat Sep 01 16:02:25 2018 -0700 |
tree | d5f6fb53390c802d9b671483085eb7c075e2cb5b | |
parent | bbbd530a00fbca611bbf2413416bc7ee7d489251 [diff] [blame] |
Identify parser functions as conditional
diff --git a/src/expr.rs b/src/expr.rs index 4ccc14d..809463a 100644 --- a/src/expr.rs +++ b/src/expr.rs
@@ -2428,6 +2428,9 @@ /// Parse the body of a block as zero or more statements, possibly /// including one trailing expression. /// + /// *This function is available if Syn is built with the `"parsing"` + /// feature.* + /// /// # Example /// /// ```