pub fn getAlias(scope: *Scope, name: []const u8) ?[]const u8
pub fn getAlias(scope: *Scope, name: []const u8) ?[]const u8 { return switch (scope.id) { .root => null, .block => @as(*Block, @fieldParentPtr("base", scope)).getAlias(name), .loop, .do_loop, .condition => scope.parent.?.getAlias(name), }; }