/**
* Represents a type member with a constant value.
*/
-public class Vala.Constant : Symbol, Lockable {
+public class Vala.Constant : Symbol {
/**
* The data type of this constant.
*/
}
}
- private bool lock_used = false;
-
private DataType _data_type;
private Expression _value;
}
}
- public bool get_lock_used () {
- return lock_used;
- }
-
- public void set_lock_used (bool used) {
- lock_used = used;
- }
-
public override void replace_expression (Expression old_node, Expression new_node) {
if (value == old_node) {
value = new_node;
/**
* Represents an object signal. Signals enable objects to provide notifications.
*/
-public class Vala.Signal : Symbol, Lockable, Callable {
+public class Vala.Signal : Symbol, Callable {
/**
* The return type of handlers of this signal.
*/
* */
public Method emitter { get; private set; }
- private bool lock_used = false;
-
private DataType _return_type;
private Block _body;
}
}
- public bool get_lock_used () {
- return lock_used;
- }
-
- public void set_lock_used (bool used) {
- lock_used = used;
- }
-
public override void replace_type (DataType old_type, DataType new_type) {
if (return_type == old_type) {
return_type = new_type;