MCPcopy Create free account
hub / github.com/arialang/aria / CodeObject

Class CodeObject

vm-lib/src/runtime_value/runtime_code_object.rs:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7#[derive(Clone)]
8pub struct CodeObject {
9 pub name: String,
10 pub body: Rc<[u8]>,
11 pub required_argc: u8,
12 pub default_argc: u8,
13 pub frame_size: u8,
14 pub loc: SourcePointer,
15 pub line_table: Rc<LineTable>,
16}
17
18impl PartialEq for CodeObject {
19 fn eq(&self, other: &Self) -> bool {

Callers 1

fromMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…