process_ccode_attribute (a);
} else if (a.name == "GIR") {
process_gir_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
foreach (Attribute a in attributes) {
if (a.name == "CCode") {
process_ccode_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
foreach (Attribute a in attributes) {
if (a.name == "CCode") {
process_ccode_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
foreach (Attribute a in attributes) {
if (a.name == "CCode") {
process_ccode_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
foreach (Attribute a in attributes) {
if (a.name == "CCode") {
process_ccode_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
foreach (Attribute a in attributes) {
if (a.name == "CCode") {
process_ccode_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
no_array_length = true;
} else if (a.name == "NoThrow") {
get_error_types ().clear ();
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
} else if (a.name == "DestroysInstance") {
this_parameter.variable_type.value_owned = true;
}
has_emitter = true;
} else if (a.name == "Signal") {
process_signal_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
process_ccode_attribute (a);
} else if (a.name == "GIR") {
process_gir_attribute (a);
- } else if (a.name == "Experimental") {
- process_experimental_attribute (a);
}
}
}
}
}
- /**
- * Process a [Experimental] attribute
- */
- public virtual void process_experimental_attribute (Attribute attr) {
- if (attr.name != "Experimental") {
- return;
- }
- }
-
/**
* Check to see if the symbol is experimental, and emit a warning
* if it is.