Skip to content

Commit

Permalink
comment out
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 4, 2024
1 parent 44ad0b9 commit 23932fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/swc_ecma_parser/src/parser/flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -995,10 +995,10 @@ where

let type_only = is!(self, "type");

if is_one_of!(self, '{', '*') || (is!(self, "type") && peeked_is!(self, '*')) {
self.parse_reexports(start, type_only, None, start)?;
return Ok(Some(()));
}
// if is_one_of!(self, '{', '*') || (is!(self, "type") && peeked_is!(self, '*'))
// { self.parse_reexports(start, type_only, None, start)?;
// return Ok(Some(()));
// }

if is!(self, "type") {
self.consume_flow_type_alias()?;
Expand Down

0 comments on commit 23932fd

Please sign in to comment.