Skip to documentation
SLOP

tiny.choir.ir.interfaces.SymbolOpInterface

Reference tiny.choir ir interfaces SymbolOpInterface

Defined in ir.interfaces.

API (4)

Actions

Public operations.

Types and contracts

Public types and contracts.

Values and defaults

Public values and defaults.

No direct callersNo direct callsir.interfacesSymbolOpInterface
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/choir/src/core/interfaces/ops.zig:1034

zig
pub const SymbolOpInterface = struct {    pub const interface_name = "ir.interface.symbol_op";    pub const id: InterfaceId = base.interfaceId(interface_name);    pub const VTable = struct {        getSymbolName: *const fn (op: *const anyopaque) ?[]const u8,        setSymbolName: *const fn (op: *const anyopaque, name: []const u8) anyerror!void,        isDeclaration: *const fn (op: *const anyopaque) bool,    };    pub fn entry(vtable: *const VTable) InterfaceEntry {        return .{ .id = id, .vtable = vtable };    }};

Source: lib/choir/src/core/interfaces/root.zig:42

zig
pub const SymbolOpInterface = ops.SymbolOpInterface;

Also reachable as

backends.wasm.emission.module_encoding.common.ir.interfaces.SymbolOpInterface.

Audit

Definitions5
Public names10
Members3
Version26.7.0
Revisiondaab053ee433