blob: a922ae96b91bd46a296673c7628ada4417c3e380 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
const std = @import("std");
Type: type,
symbol_name: []const u8,
local_name: []const u8,
Parent: type,
pub fn Decl(comptime this: *const @This()) std.builtin.TypeInfo.Declaration {
return comptime std.meta.declarationInfo(this.Parent, this.local_name);
}
|