From ffe2c223fefb5d1397b17aa030485d79a9bf2a85 Mon Sep 17 00:00:00 2001 From: Robert Masen Date: Sat, 3 Jun 2023 10:46:23 -0500 Subject: [PATCH 1/2] NamespaceImportSpec::keyword is As not From --- src/spanned/decl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spanned/decl.rs b/src/spanned/decl.rs index 47335f4..89fb7db 100644 --- a/src/spanned/decl.rs +++ b/src/spanned/decl.rs @@ -255,7 +255,7 @@ impl Node for DefaultImportSpec { #[derive(Debug, Clone, PartialEq)] pub struct NamespaceImportSpec { pub star: Asterisk, - pub keyword: From, + pub keyword: As, pub ident: Ident, } From bc4b04dcf57699614a621ec6cd87fffd47a8adae Mon Sep 17 00:00:00 2001 From: Robert Masen Date: Sat, 3 Jun 2023 10:51:34 -0500 Subject: [PATCH 2/2] bump version to 0.6.0-alpha.3 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f92faa7..8496f7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "resast" -version = "0.6.0-alpha.2" +version = "0.6.0-alpha.3" authors = ["rfm "] edition = "2018" description = "Rusty-ECMAScript Abstract Syntax Tree"