swc/common/src/pos.rs
강동윤 eebf14fbef
Allow stable rust (#118)
This pr introduces some cargo features. For `swc_common` and `swc_ecma_ast`, it introduces a feature flag `fold`.
`Fold` and `Visit` traits exist only if the feature is enabled.

For `swc_ecma_parser`, flag called `verify` is added. When disabled, we skip checking of validity of some expressions.

e.g. `{foo = bar}`

Verification is disabled by default it requires nightly compiler
2019-01-17 23:17:16 +09:00

87 lines
1.7 KiB
Rust

#[cfg(feature = "fold")]
use fold::{FoldWith, VisitWith};
pub use syntax_pos::{
hygiene, BytePos, ExpnInfo, FileName, Globals, Mark, MultiSpan, SourceFile, Span, SpanData,
SyntaxContext, DUMMY_SP, GLOBALS, NO_EXPANSION,
};
///
/// # Derive
/// This trait can be derived with `#[derive(Spanned)]`.
pub trait Spanned {
/// Get span of `self`.
fn span(&self) -> Span;
}
impl Spanned for Span {
#[inline(always)]
fn span(&self) -> Span {
*self
}
}
impl Spanned for BytePos {
/// Creates a new single-byte span.
#[inline(always)]
fn span(&self) -> Span {
Span::new(*self, *self, Default::default())
}
}
impl<S> Spanned for Option<S>
where
S: Spanned,
{
fn span(&self) -> Span {
match *self {
Some(ref s) => s.span(),
None => DUMMY_SP,
}
}
}
impl<S> Spanned for Box<S>
where
S: ?Sized + Spanned,
{
fn span(&self) -> Span {
<S as Spanned>::span(&*self)
}
}
impl<'a, S> Spanned for &'a S
where
S: ?Sized + Spanned,
{
fn span(&self) -> Span {
<S as Spanned>::span(&*self)
}
}
impl<A, B> Spanned for ::either::Either<A, B>
where
A: Spanned,
B: Spanned,
{
fn span(&self) -> Span {
match *self {
::either::Either::Left(ref n) => n.span(),
::either::Either::Right(ref n) => n.span(),
}
}
}
#[cfg(feature = "fold")]
impl<F> FoldWith<F> for Span {
/// No op as span does not have any child.
fn fold_children(self, _: &mut F) -> Span {
self
}
}
#[cfg(feature = "fold")]
impl<F> VisitWith<F> for Span {
/// No op as span does not have any child.
fn visit_children(&self, _: &mut F) {}
}