Class: Rubydex::ClassVariable

Inherits:
Declaration show all
Defined in:
ext/rubydex/declaration.c

Instance Method Summary collapse

Methods inherited from Declaration

#definitions, #initialize, #name, #owner, #unqualified_name

Constructor Details

This class inherits a constructor from Rubydex::Declaration

Instance Method Details

#referencesArray[untyped]

Returns an empty array because variable declarations do not yet support reference lookup.

Returns:

  • (Array[untyped])


412
413
414
# File 'ext/rubydex/declaration.c', line 412

static VALUE rdxr_variable_declaration_references(VALUE self) {
    return rb_ary_new();
}