pub struct CodeWriter(_);
Expand description

A helper to emit code. Supports indentation and maintains source to target location information.

Implementations

Creates new code writer, with the given default location.

Creates a label at which code can be inserted later.

Inserts code at the previously created label.

Calls a function to process the code written so far. This is embedded into a function so we ensure correct scoping of borrowed RefCell content.

Extracts the output as a string. Leaves the writers data empty.

Sets the current location. This location will be associated with all subsequently written code so we can map back from the generated code to this location. If current loc is already the passed one, nothing will be updated, so it is ok to call this method repeatedly with the same value.

Given a byte index in the written output, return the best approximation of the source which generated this output.

Given line/column location, determine ByteIndex of that location.

Indents any subsequently written output. The current line of output and any subsequent ones will be indented. Note this works after the last output was \n but the line is still empty.

Undo previously done indentation.

Emit some code with indentation

Emit a string. The string will be broken down into lines to apply current indentation.

Emits a string and then terminates the line.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.