summaryrefslogtreecommitdiffstats
path: root/third_party/rust/jsparagus-emitter/src/script_emitter.rs
blob: 36c24ca5941027a89dc1834085edda961a738200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use crate::ast_emitter::AstEmitter;
use crate::emitter::EmitError;

pub struct ScriptEmitter<'a, FuncT, FuncF, StmtT, StmtF>
where
    FuncF: Fn(&mut AstEmitter, &FuncT) -> Result<(), EmitError>,
    StmtF: Fn(&mut AstEmitter, &StmtT) -> Result<(), EmitError>,
{
    pub top_level_functions: std::slice::Iter<'a, FuncT>,
    pub top_level_function: FuncF,
    pub statements: std::slice::Iter<'a, StmtT>,
    pub statement: StmtF,
}

impl<'a, FuncT, FuncF, StmtT, StmtF> ScriptEmitter<'a, FuncT, FuncF, StmtT, StmtF>
where
    FuncF: Fn(&mut AstEmitter, &FuncT) -> Result<(), EmitError>,
    StmtF: Fn(&mut AstEmitter, &StmtT) -> Result<(), EmitError>,
{
    pub fn emit(self, emitter: &mut AstEmitter) -> Result<(), EmitError> {
        let scope_data_map = &emitter.compilation_info.scope_data_map;

        emitter.scope_stack.enter_global(
            &mut emitter.emit,
            scope_data_map,
            self.top_level_functions.len() as u32,
        );

        for fun in self.top_level_functions {
            (self.top_level_function)(emitter, fun)?;
        }

        for statement in self.statements {
            (self.statement)(emitter, statement)?;
        }

        emitter.emit.ret_rval();

        emitter.scope_stack.leave_global(&mut emitter.emit);

        Ok(())
    }
}