use std::{
borrow::Cow,
fmt::Display,
ops::{Deref, DerefMut},
};
use phf::phf_set;
use swc_atoms::{js_word, Atom};
use swc_common::{
ast_node, util::take::Take, BytePos, EqIgnoreSpan, Mark, Span, Spanned, SyntaxContext, DUMMY_SP,
};
use crate::{typescript::TsTypeAnn, Expr};
#[derive(Clone, Debug, PartialEq, Eq, Hash, EqIgnoreSpan, Default)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
#[cfg_attr(
any(feature = "rkyv-impl"),
derive(rkyv::Archive, rkyv::Serialize, rkyv::Deserialize)
)]
#[cfg_attr(
feature = "rkyv",
archive(bound(serialize = "__S: rkyv::ser::ScratchSpace + rkyv::ser::Serializer"))
)]
#[cfg_attr(feature = "rkyv-impl", archive(check_bytes))]
#[cfg_attr(
feature = "rkyv-impl",
archive_attr(check_bytes(bound = "__C: rkyv::validation::ArchiveContext, <__C as \
rkyv::Fallible>::Error: std::error::Error"))
)]
#[cfg_attr(feature = "rkyv-impl", archive_attr(repr(C)))]
#[cfg_attr(feature = "serde-impl", derive(serde::Serialize, serde::Deserialize))]
pub struct BindingIdent {
#[cfg_attr(feature = "serde-impl", serde(flatten))]
#[cfg_attr(feature = "__rkyv", omit_bounds)]
#[cfg_attr(feature = "__rkyv", archive_attr(omit_bounds))]
pub id: Ident,
#[cfg_attr(feature = "serde-impl", serde(default, rename = "typeAnnotation"))]
#[cfg_attr(feature = "__rkyv", omit_bounds)]
#[cfg_attr(feature = "__rkyv", archive_attr(omit_bounds))]
pub type_ann: Option<Box<TsTypeAnn>>,
}
impl Spanned for BindingIdent {
fn span(&self) -> Span {
match &self.type_ann {
Some(ann) => Span::new(self.id.span.lo(), ann.span().hi()),
None => self.id.span,
}
}
}
impl Deref for BindingIdent {
type Target = Ident;
fn deref(&self) -> &Self::Target {
&self.id
}
}
impl DerefMut for BindingIdent {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.id
}
}
impl AsRef<str> for BindingIdent {
fn as_ref(&self) -> &str {
&self.sym
}
}
impl From<BindingIdent> for Box<Expr> {
fn from(bi: BindingIdent) -> Self {
Box::new(Expr::Ident(bi.into()))
}
}
impl From<&'_ BindingIdent> for Ident {
fn from(bi: &'_ BindingIdent) -> Self {
Ident {
span: bi.span,
ctxt: bi.ctxt,
sym: bi.sym.clone(),
optional: bi.optional,
}
}
}
impl BindingIdent {
pub fn to_id(&self) -> Id {
(self.sym.clone(), self.ctxt)
}
}
impl Take for BindingIdent {
fn dummy() -> Self {
Default::default()
}
}
impl From<Ident> for BindingIdent {
fn from(id: Ident) -> Self {
BindingIdent {
id,
..Default::default()
}
}
}
bridge_from!(BindingIdent, Ident, Id);
#[ast_node("Identifier")]
#[derive(Eq, Hash, Default)]
pub struct Ident {
#[cfg_attr(feature = "__rkyv", omit_bounds)]
pub span: Span,
#[cfg_attr(feature = "__rkyv", omit_bounds)]
pub ctxt: SyntaxContext,
#[cfg_attr(feature = "serde-impl", serde(rename = "value"))]
pub sym: Atom,
#[cfg_attr(feature = "serde-impl", serde(default))]
pub optional: bool,
}
impl From<BindingIdent> for Ident {
fn from(bi: BindingIdent) -> Self {
bi.id
}
}
impl From<Atom> for Ident {
fn from(bi: Atom) -> Self {
Ident::new_no_ctxt(bi, DUMMY_SP)
}
}
bridge_from!(Ident, Atom, &'_ str);
bridge_from!(Ident, Atom, Cow<'_, str>);
bridge_from!(Ident, Atom, String);
impl From<(Atom, Span)> for Ident {
fn from((sym, span): (Atom, Span)) -> Self {
Ident {
span,
sym,
..Default::default()
}
}
}
impl EqIgnoreSpan for Ident {
fn eq_ignore_span(&self, other: &Self) -> bool {
if self.sym != other.sym {
return false;
}
self.ctxt.eq_ignore_span(&other.ctxt)
}
}
impl From<Id> for Ident {
fn from(id: Id) -> Self {
Ident::new(id.0, DUMMY_SP, id.1)
}
}
impl From<Ident> for Id {
fn from(i: Ident) -> Self {
(i.sym, i.ctxt)
}
}
#[repr(C, align(64))]
struct Align64<T>(pub(crate) T);
const T: bool = true;
const F: bool = false;
impl Ident {
pub fn within_ignored_ctxt<F, Ret>(op: F) -> Ret
where
F: FnOnce() -> Ret,
{
SyntaxContext::within_ignored_ctxt(op)
}
pub fn without_loc(mut self) -> Ident {
self.span.lo = BytePos::DUMMY;
self.span.hi = BytePos::DUMMY;
self
}
pub fn to_id(&self) -> Id {
(self.sym.clone(), self.ctxt)
}
#[inline]
pub fn is_valid_start(c: char) -> bool {
const ASCII_START: Align64<[bool; 128]> = Align64([
F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F,
F, F, F, F, F, F, F, T, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F,
F, F, F, F, F, F, F, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T,
T, T, T, T, F, F, F, F, T, F, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T,
T, T, T, T, T, T, T, F, F, F, F, F,
]);
if c.is_ascii() {
return ASCII_START.0[c as usize];
}
unicode_id_start::is_id_start_unicode(c)
}
#[inline]
pub fn is_valid_continue(c: char) -> bool {
const ASCII_CONTINUE: Align64<[bool; 128]> = Align64([
F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F, F,
F, F, F, F, F, F, F, T, F, F, F, F, F, F, F, F, F, F, F, T, T, T, T, T, T, T, T, T, T,
F, F, F, F, F, F, F, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T,
T, T, T, T, F, F, F, F, T, F, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T, T,
T, T, T, T, T, T, T, F, F, F, F, F,
]);
if c.is_ascii() {
return ASCII_CONTINUE.0[c as usize];
}
unicode_id_start::is_id_continue_unicode(c)
}
pub fn verify_symbol(s: &str) -> Result<(), String> {
fn is_reserved_symbol(s: &str) -> bool {
s.is_reserved() || s.is_reserved_in_strict_mode(true) || s.is_reserved_in_strict_bind()
}
if is_reserved_symbol(s) {
let mut buf = String::with_capacity(s.len() + 1);
buf.push('_');
buf.push_str(s);
return Err(buf);
}
{
let mut chars = s.chars();
if let Some(first) = chars.next() {
if Self::is_valid_start(first) && chars.all(Self::is_valid_continue) {
return Ok(());
}
}
}
let mut buf = String::with_capacity(s.len() + 2);
let mut has_start = false;
for c in s.chars() {
if !has_start && Self::is_valid_start(c) {
has_start = true;
buf.push(c);
continue;
}
if Self::is_valid_continue(c) {
buf.push(c);
}
}
if buf.is_empty() {
buf.push('_');
}
if is_reserved_symbol(&buf) {
let mut new_buf = String::with_capacity(buf.len() + 1);
new_buf.push('_');
new_buf.push_str(&buf);
buf = new_buf;
}
Err(buf)
}
pub fn with_prefix(&self, prefix: &str) -> Ident {
Ident::new(
format!("{}{}", prefix, self.sym).into(),
self.span,
self.ctxt,
)
}
pub fn into_private(self) -> Ident {
Self::new(
self.sym,
self.span,
SyntaxContext::empty().apply_mark(Mark::new()),
)
}
#[inline]
pub fn is_dummy(&self) -> bool {
self.sym == js_word!("") && self.span.is_dummy()
}
pub fn with_pos(mut self, lo: BytePos, hi: BytePos) -> Ident {
self.span = Span::new(lo, hi);
self
}
}
#[ast_node("Identifier")]
#[derive(Eq, Hash, Default, EqIgnoreSpan)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct IdentName {
#[cfg_attr(feature = "__rkyv", omit_bounds)]
pub span: Span,
#[cfg_attr(feature = "serde-impl", serde(rename = "value"))]
pub sym: Atom,
}
impl From<Atom> for IdentName {
fn from(sym: Atom) -> Self {
IdentName {
span: DUMMY_SP,
sym,
}
}
}
impl From<(Atom, Span)> for IdentName {
fn from((sym, span): (Atom, Span)) -> Self {
IdentName { span, sym }
}
}
bridge_from!(IdentName, Atom, &'_ str);
bridge_from!(IdentName, Atom, Cow<'_, str>);
bridge_from!(IdentName, Atom, String);
bridge_from!(IdentName, Ident, &'_ BindingIdent);
bridge_from!(IdentName, Ident, BindingIdent);
impl AsRef<str> for IdentName {
fn as_ref(&self) -> &str {
&self.sym
}
}
impl IdentName {
pub const fn new(sym: Atom, span: Span) -> Self {
Self { span, sym }
}
}
impl Take for IdentName {
fn dummy() -> Self {
Default::default()
}
}
impl From<Ident> for IdentName {
fn from(i: Ident) -> Self {
IdentName {
span: i.span,
sym: i.sym,
}
}
}
impl From<IdentName> for Ident {
fn from(i: IdentName) -> Self {
Ident {
span: i.span,
sym: i.sym,
..Default::default()
}
}
}
bridge_from!(BindingIdent, Ident, Atom);
bridge_from!(BindingIdent, Atom, &'_ str);
bridge_from!(BindingIdent, Atom, Cow<'_, str>);
bridge_from!(BindingIdent, Atom, String);
impl From<IdentName> for BindingIdent {
fn from(i: IdentName) -> Self {
BindingIdent {
id: i.into(),
..Default::default()
}
}
}
pub type Id = (Atom, SyntaxContext);
impl Take for Ident {
fn dummy() -> Self {
Ident::new_no_ctxt(js_word!(""), DUMMY_SP)
}
}
impl Display for Ident {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}{:?}", self.sym, self.ctxt)
}
}
impl Display for IdentName {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.sym)
}
}
impl Display for BindingIdent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}{:?}", self.sym, self.ctxt)
}
}
#[cfg(feature = "arbitrary")]
#[cfg_attr(docsrs, doc(cfg(feature = "arbitrary")))]
impl<'a> arbitrary::Arbitrary<'a> for Ident {
fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> {
let span = u.arbitrary()?;
let sym = u.arbitrary::<Atom>()?;
let optional = u.arbitrary()?;
Ok(Self {
span,
sym,
optional,
ctxt: Default::default(),
})
}
}
#[ast_node("PrivateName")]
#[derive(Eq, Hash, EqIgnoreSpan, Default)]
#[cfg_attr(feature = "arbitrary", derive(arbitrary::Arbitrary))]
pub struct PrivateName {
pub span: Span,
#[cfg_attr(feature = "serde-impl", serde(rename = "value"))]
pub name: Atom,
}
impl AsRef<str> for Ident {
fn as_ref(&self) -> &str {
&self.sym
}
}
impl Ident {
pub const fn new(sym: Atom, span: Span, ctxt: SyntaxContext) -> Self {
Ident {
span,
ctxt,
sym,
optional: false,
}
}
#[inline(never)]
pub fn new_private(sym: Atom, span: Span) -> Self {
Self::new(sym, span, SyntaxContext::empty().apply_mark(Mark::new()))
}
pub const fn new_no_ctxt(sym: Atom, span: Span) -> Self {
Self::new(sym, span, SyntaxContext::empty())
}
}
static RESERVED: phf::Set<&str> = phf_set!(
"break",
"case",
"catch",
"class",
"const",
"continue",
"debugger",
"default",
"delete",
"do",
"else",
"enum",
"export",
"extends",
"false",
"finally",
"for",
"function",
"if",
"import",
"in",
"instanceof",
"new",
"null",
"package",
"return",
"super",
"switch",
"this",
"throw",
"true",
"try",
"typeof",
"var",
"void",
"while",
"with",
);
static RESSERVED_IN_STRICT_MODE: phf::Set<&str> = phf_set!(
"implements",
"interface",
"let",
"package",
"private",
"protected",
"public",
"static",
"yield",
);
static RESSERVED_IN_STRICT_BIND: phf::Set<&str> = phf_set!("eval", "arguments",);
static RESERVED_IN_ES3: phf::Set<&str> = phf_set!(
"abstract",
"boolean",
"byte",
"char",
"double",
"final",
"float",
"goto",
"int",
"long",
"native",
"short",
"synchronized",
"throws",
"transient",
"volatile",
);
pub trait EsReserved: AsRef<str> {
fn is_reserved(&self) -> bool {
RESERVED.contains(self.as_ref())
}
fn is_reserved_in_strict_mode(&self, is_module: bool) -> bool {
if is_module && self.as_ref() == "await" {
return true;
}
RESSERVED_IN_STRICT_MODE.contains(self.as_ref())
}
fn is_reserved_in_strict_bind(&self) -> bool {
RESSERVED_IN_STRICT_BIND.contains(self.as_ref())
}
fn is_reserved_in_es3(&self) -> bool {
RESERVED_IN_ES3.contains(self.as_ref())
}
fn is_reserved_in_any(&self) -> bool {
RESERVED.contains(self.as_ref())
|| RESSERVED_IN_STRICT_MODE.contains(self.as_ref())
|| RESSERVED_IN_STRICT_BIND.contains(self.as_ref())
|| RESERVED_IN_ES3.contains(self.as_ref())
}
}
impl EsReserved for Atom {}
impl EsReserved for IdentName {}
impl EsReserved for Ident {}
impl EsReserved for BindingIdent {}
impl EsReserved for &'_ str {}
impl EsReserved for String {}