Skip to content

Commit

Permalink
Merge pull request #10 from rusty-ecma/fix/import_all_as
Browse files Browse the repository at this point in the history
Fix/import all as
  • Loading branch information
FreeMasen authored Jun 3, 2023
2 parents e76bca3 + bc4b04d commit 034fa3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resast"
version = "0.6.0-alpha.2"
version = "0.6.0-alpha.3"
authors = ["rfm <r.f.masen@gmail.com>"]
edition = "2018"
description = "Rusty-ECMAScript Abstract Syntax Tree"
Expand Down
2 changes: 1 addition & 1 deletion src/spanned/decl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ impl<T> Node for DefaultImportSpec<T> {
#[derive(Debug, Clone, PartialEq)]
pub struct NamespaceImportSpec<T> {
pub star: Asterisk,
pub keyword: From,
pub keyword: As,
pub ident: Ident<T>,
}

Expand Down

0 comments on commit 034fa3b

Please sign in to comment.