Skip to main content

JsEmitter

Trait JsEmitter 

Source
pub trait JsEmitter<A> {
    // Required method
    fn js(&mut self, op0: A);
}
Expand description

JS.

Supported operand variants:

+---+----------+
| # | Operands |
+---+----------+
| 1 | Imm      |
| 2 | Label    |
| 3 | Sym      |
+---+----------+

Required Methods§

Source

fn js(&mut self, op0: A)

Implementors§

Source§

impl<'a> JsEmitter<Imm> for Assembler<'a>

Source§

impl<'a> JsEmitter<Label> for Assembler<'a>

Source§

impl<'a> JsEmitter<Sym> for Assembler<'a>