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

Class CompiledCodeObject

compiler-lib/src/constant_value.rs:10–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8
9#[derive(Clone, PartialEq, Eq)]
10pub struct CompiledCodeObject {
11 pub name: String,
12 pub body: Vec<u8>,
13 pub required_argc: u8, // arguments that are required to call this function
14 pub default_argc: u8, // additional arguments that this function can accept
15 pub loc: SourcePointer,
16 pub line_table: LineTable,
17 pub frame_size: u8,
18}
19
20#[derive(Clone, Copy)]
21pub struct FpConst(f64);

Callers 3

do_compileMethod · 0.85
do_compileMethod · 0.85
do_compileMethod · 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…