rustpython-ast 0.4.0

AST definitions for RustPython
Documentation
#![allow(clippy::derive_partial_eq_without_eq)]
use crate::source_code::{SourceLocation, SourceRange};

pub trait Located {
    fn range(&self) -> SourceRange;

    fn location(&self) -> SourceLocation {
        self.range().start
    }

    fn end_location(&self) -> Option<SourceLocation> {
        self.range().end
    }
}

pub trait LocatedMut: Located {
    fn range_mut(&mut self) -> &mut SourceRange;
}

pub type Suite = Vec<Stmt>;

pub use crate::builtin::*;
include!("gen/located.rs");