INNER CODE UNIT · Python

NestedFrame

P1sec/hermes-dec · src/hermes_dec/decompilation/defs.py:106

class NestedFrame:
    start_address: int
    end_address: int

    pass  # WIP


@dataclass
class Environment:
    parent_environment: Optional['Environment'] = None
    nesting_quantity: int = 0
    slot_index_to_varname: Dict[int, str] = None


class DecompiledFunctionBody:
    is_global: bool  # Is this the global function?
    function_name: str
    function_id: int

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…