1 /* valareferencetransferexpression.vala
3 * Copyright (C) 2007-2010 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>
25 * Represents a reference transfer expression in the source code, e.g. `#foo`.
27 public class Vala
.ReferenceTransferExpression
: Expression
{
29 * The variable whose reference is to be transferred.
31 public Expression inner
{
37 _inner
.parent_node
= this
;
41 private Expression _inner
;
44 * Creates a new reference transfer expression.
46 * @param inner variable whose reference is to be transferred
47 * @return newly created reference transfer expression
49 public ReferenceTransferExpression (Expression inner
, SourceReference? source_reference
= null) {
51 this
.source_reference
= source_reference
;
54 public override void accept (CodeVisitor visitor
) {
55 visitor
.visit_reference_transfer_expression (this
);
57 visitor
.visit_expression (this
);
60 public override void accept_children (CodeVisitor visitor
) {
61 inner
.accept (visitor
);
64 public override void replace_expression (Expression old_node
, Expression new_node
) {
65 if (inner
== old_node
) {
70 public override bool is_pure () {
74 public override bool is_accessible (Symbol sym
) {
75 return inner
.is_accessible (sym
);
78 public override bool check (CodeContext context
) {
87 inner
.check (context
);
90 /* if there was an error in the inner expression, skip type check */
95 if (!(inner is MemberAccess
|| inner is ElementAccess
)) {
97 Report
.error (source_reference
, "Reference transfer not supported for this expression");
101 var is_owned_delegate
= inner
.value_type is DelegateType
&& inner
.value_type
.value_owned
;
102 if (!inner
.value_type
.is_disposable ()
103 && !(inner
.value_type is PointerType
)
104 && !is_owned_delegate
) {
106 Report
.error (source_reference
, "No reference to be transferred");
110 value_type
= inner
.value_type
.copy ();
111 value_type
.value_owned
= true;
116 public override void emit (CodeGenerator codegen
) {
117 inner
.emit (codegen
);
119 codegen
.visit_reference_transfer_expression (this
);
121 codegen
.visit_expression (this
);
124 public override void get_defined_variables (Collection
<Variable
> collection
) {
125 inner
.get_defined_variables (collection
);
126 var local
= inner
.symbol_reference as LocalVariable
;
127 var param
= inner
.symbol_reference as Parameter
;
129 collection
.add (local
);
130 } else if (param
!= null && param
.direction
== ParameterDirection
.OUT
) {
131 collection
.add (param
);
135 public override void get_used_variables (Collection
<Variable
> collection
) {
136 inner
.get_used_variables (collection
);
137 var local
= inner
.symbol_reference as LocalVariable
;
138 var param
= inner
.symbol_reference as Parameter
;
140 collection
.add (local
);
141 } else if (param
!= null && param
.direction
== ParameterDirection
.OUT
) {
142 collection
.add (param
);