1 /* valareferencetransferexpression.vala
3 * Copyright (C) 2007-2008 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * Jürg Billeter <j@bitron.ch>
26 * Represents a reference transfer expression in the source code, e.g. `#foo'.
28 public class Vala
.ReferenceTransferExpression
: Expression
{
30 * The variable whose reference is to be transferred.
32 public Expression inner
{
38 _inner
.parent_node
= this
;
42 private Expression _inner
;
45 * Creates a new reference transfer expression.
47 * @param inner variable whose reference is to be transferred
48 * @return newly created reference transfer expression
50 public ReferenceTransferExpression (Expression inner
, SourceReference? source_reference
= null) {
52 this
.source_reference
= source_reference
;
55 public override void accept (CodeVisitor visitor
) {
56 visitor
.visit_reference_transfer_expression (this
);
58 visitor
.visit_expression (this
);
61 public override void accept_children (CodeVisitor visitor
) {
62 inner
.accept (visitor
);
65 public override void replace_expression (Expression old_node
, Expression new_node
) {
66 if (inner
== old_node
) {
71 public override bool is_pure () {
75 public override bool check (SemanticAnalyzer analyzer
) {
84 inner
.check (analyzer
);
87 /* if there was an error in the inner expression, skip type check */
92 if (!(inner is MemberAccess
|| inner is ElementAccess
)) {
94 Report
.error (source_reference
, "Reference transfer not supported for this expression");
98 if (!inner
.value_type
.is_disposable ()
99 && !(inner
.value_type is PointerType
)) {
101 Report
.error (source_reference
, "No reference to be transferred");
105 value_type
= inner
.value_type
.copy ();
106 value_type
.value_owned
= true;
111 public override void get_defined_variables (Collection
<LocalVariable
> collection
) {
112 inner
.get_defined_variables (collection
);
115 public override void get_used_variables (Collection
<LocalVariable
> collection
) {
116 inner
.get_used_variables (collection
);