From 1e2ceb40a68fa6aa4a8a26ba3b69e9dc8461d255 Mon Sep 17 00:00:00 2001 From: Scott Godwin Date: Thu, 5 Apr 2018 06:31:05 -0400 Subject: [PATCH] clarify RELEASES.md --- RELEASES.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 9ae63f3..9813bd7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,7 +4,18 @@ - Add back support for parsing `implements` statement for backwards compatibility with older WebIDLs - Add back support for parsing `legacycaller` in special operations for backwards compatibility with older WebIDLs - Update `lalrpop` to `0.15.1`. Version `0.15.0` cannot be used as it breaks with usage of `include!` - - Remove unnecessary `Parser` struct, since it does not do anything + - Remove unnecessary `Parser` struct, since it does not do anything. Instead of doing + + ``` + let parser = Parser::new(); + let result = parser.parse_string(...); + ``` + + You can now simply do + + ``` + let result = parse_string(...); + ``` # 0.5.0