using GLib;
/**
- * Represents an address-of expression in the source code, e.g. `&foo'.
+ * Represents an address-of expression in the source code, e.g. `&foo`.
*/
public class Vala.AddressofExpression : Expression {
/**
using GLib;
/**
- * Represents an array creation expression e.g. "new int[] {1,2,3}".
+ * Represents an array creation expression e.g. {{{ new int[] {1,2,3} }}}.
*/
public class Vala.ArrayCreationExpression : Expression {
/**
public Block body { get; set; }
/**
- * Specifies the generated `this' parameter for instance methods.
+ * Specifies the generated `this` parameter for instance methods.
*/
public FormalParameter this_parameter { get; set; }
public Block body { get; set; }
/**
- * Specifies the generated `this' parameter for instance methods.
+ * Specifies the generated `this` parameter for instance methods.
*/
public FormalParameter this_parameter { get; set; }
using GLib;
/**
- * Represents a lock statement e.g. "lock (a) { f(a) }".
+ * Represents a lock statement e.g. {{{ lock (a) { f(a) } }}}.
*/
public class Vala.LockStatement : CodeNode, Statement {
/**
public bool entry_point { get; private set; }
/**
- * Specifies the generated `this' parameter for instance methods.
+ * Specifies the generated `this` parameter for instance methods.
*/
public FormalParameter this_parameter { get; set; }
/**
- * Specifies the generated `result' variable for postconditions.
+ * Specifies the generated `result` variable for postconditions.
*/
public LocalVariable result_var { get; set; }
using GLib;
/**
- * Represents a literal `null' in the source code.
+ * Represents a literal `null` in the source code.
*/
public class Vala.NullLiteral : Literal {
/**
/**
- * Represents a pointer indirection in the source code, e.g. `*pointer'.
+ * Represents a pointer indirection in the source code, e.g. `*pointer`.
*/
public class Vala.PointerIndirection : Expression {
/**
}
/**
- * Represents the generated ´this' parameter in this property.
+ * Represents the generated `this` parameter in this property.
*/
public FormalParameter this_parameter { get; set; }
/**
- * Specifies whether a `notify' signal should be emitted on property
+ * Specifies whether a `notify` signal should be emitted on property
* changes.
*/
public bool notify { get; set; default = true; }
/**
- * Represents a reference transfer expression in the source code, e.g. `#foo'.
+ * Represents a reference transfer expression in the source code, e.g. `#foo`.
*/
public class Vala.ReferenceTransferExpression : Expression {
/**
using GLib;
/**
- * Represents a type check (`is') expression in the source code.
+ * Represents a type check (`is`) expression in the source code.
*/
public class Vala.TypeCheck : Expression {
/**
* Returns the default value for the given type. Returning null means
* there is no default value (i.e. not that the default name is NULL).
*
- * @return the name of the default value
+ * @return the name of the default value
*/
public virtual string? get_default_value () {
return null;