Skip to main content

Reducer

Struct Reducer 

Source
pub struct Reducer { /* private fields */ }
Expand description

Reducer is a native-only utility for reducing Luau source code while preserving a bug. It is not portable to wasm32-unknown-unknown.

Implementations§

Source§

impl Reducer

Source§

impl Reducer

Source§

impl Reducer

Source

pub fn generate_spans(&self, size: usize, chunks: usize) -> Vec<(Span, Span)>

Source§

impl Reducer

Source§

impl Reducer

Source

pub fn pruned_span( &self, block: *mut AstStatBlock, span1: Span, span2: Span, ) -> Vec<*mut AstStat>

Source§

impl Reducer

Source

pub fn read_line(&self, f: *mut c_void) -> String

Source§

impl Reducer

Source

pub fn reallocate_statements( &mut self, statements: &Vec<*mut AstStat>, ) -> *mut *mut AstStat

Move new body data into allocator-managed storage so that it’s safe to keep around longterm. C++ (CLI/src/Reduce.cpp:233-239):

AstStat** newData = static_cast<AstStat**>(allocator.allocate(sizeof(AstStat*) * statements.size()));
std::copy(statements.data(), statements.data() + statements.size(), newData);
return newData;

The pointers are copied into arena storage owned by self.allocator, which outlives the Reducer, so the returned pointer stays valid for the rest of the run.

Source§

impl Reducer

Source

pub fn run(&mut self) -> TestResult

Source§

impl Reducer

Source

pub fn run_string_string_string_view_string_view( &mut self, script_name: String, command: String, source: &str, search_text: &str, )

Source§

impl Reducer

Source§

impl Reducer

Source§

impl Reducer

Source

pub fn walk(&mut self, block: *mut AstStatBlock)

Source§

impl Reducer

Source

pub fn write_temp_script(&mut self, minify: bool)

Source§

impl Reducer

Source

pub fn new() -> Self

Trait Implementations§

Source§

impl Debug for Reducer

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Reducer

Source§

fn default() -> Self

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, 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, 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.