Skip to main content

IncrementalParserV2

Struct IncrementalParserV2 

Source
pub struct IncrementalParserV2 {
    pub reused_nodes: usize,
    pub reparsed_nodes: usize,
    pub metrics: IncrementalMetrics,
    pub last_reuse_analysis: Option<ReuseAnalysisResult>,
    /* private fields */
}
Expand description

High-performance incremental parser with intelligent AST node reuse

Maintains previous parse state and applies edits incrementally when possible, falling back to full parsing for complex structural changes. Designed for real-time editing scenarios with sub-millisecond update targets.

§Thread Safety

IncrementalParserV2 is not thread-safe and should be used from a single thread. For multi-threaded scenarios, create separate parser instances per thread.

Fields§

§reused_nodes: usize§reparsed_nodes: usize§metrics: IncrementalMetrics§last_reuse_analysis: Option<ReuseAnalysisResult>

Performance tracking for reuse analysis

Implementations§

Source§

impl IncrementalParserV2

Source

pub fn new() -> IncrementalParserV2

Source

pub fn with_reuse_config(config: ReuseConfig) -> IncrementalParserV2

Create parser with custom reuse configuration

Source

pub fn edit(&mut self, edit: Edit)

Source

pub fn parse(&mut self, source: &str) -> Result<Node, ParseError>

Source

pub fn get_metrics(&self) -> &IncrementalMetrics

Get current performance metrics

Source

pub fn reset_metrics(&mut self)

Reset performance metrics

Source

pub fn get_last_reuse_analysis(&self) -> Option<&ReuseAnalysisResult>

Get the last reuse analysis result if available

Source

pub fn set_reuse_config(&mut self, config: ReuseConfig)

Update reuse configuration

Source

pub fn used_advanced_reuse(&self) -> bool

Check if the last parse used advanced reuse analysis

Source

pub fn get_reuse_efficiency_report(&self) -> String

Get detailed reuse efficiency report

Trait Implementations§

Source§

impl Default for IncrementalParserV2

Source§

fn default() -> IncrementalParserV2

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more