class Rubydex::ConstantReference
Public Instance Methods
Source
static VALUE rdxr_constant_reference_location(VALUE self) {
HandleData *data;
void *graph = rdxi_graph_from_handle(self, &data);
Location *loc = rdx_constant_reference_location(graph, data->id);
VALUE location = rdxi_build_location_value(loc);
rdx_location_free(loc);
return location;
}
Returns the source location for this constant reference.