OUT,
REF;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case FormalParameterType.OUT:
return "out";
INLINE,
STATIC;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case OVERRIDE:
return "override";
STRUCT,
TYPE_PARAMETER;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case CLASS:
return "CLASS";
OWNED,
WEAK;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case Ownership.UNOWNED:
return "unowned";
SET = 1 << 1,
GET = 1 << 2;
- public string to_string () {
+ public unowned string to_string () {
if ((this & PropertyAccessorType.CONSTRUCT) != 0) {
if ((this & PropertyAccessorType.SET) != 0) {
return "construct set";
ABSTRACT,
VIRTUAL;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case OVERRIDE:
return "override";
PRIVATE,
PUBLIC;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case SymbolAccessibility.PROTECTED:
return "protected";
}
}
- public string to_string () {
+ public unowned string to_string () {
return _word == null ? _type.to_string () : _word;
}
- public string to_pretty_string () {
+ public unowned string to_pretty_string () {
return _word == null ? _type.to_pretty_string () : _word;
}
return false;
}
- public string to_string () {
+ public unowned string to_string () {
return _string_value;
}
- public string to_pretty_string () {
+ public unowned string to_pretty_string () {
if (_pretty_string != null) {
return _pretty_string;
}
IN,
OUT;
- public string to_string () {
+ public unowned string to_string () {
switch (this) {
case NONE:
return "";