Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / AST / Exp / MemberAccessExpression.cs
blobc2fbf0d38398dfad269e0040541a0e1d8aeda6f1
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.Rook.Compiler.AST
17 using System;
18 using Castle.Rook.Compiler.Visitors;
21 public class MemberAccessExpression : Expression
23 private IExpression inner;
24 private string name;
26 public MemberAccessExpression(IExpression inner, String name)
28 this.inner = inner;
29 this.name = name;
32 public IExpression Inner
34 get { return inner; }
35 set { inner = value; }
38 public string Name
40 get { return name; }
41 set { name = value; }
44 public override bool Accept(IASTVisitor visitor)
46 visitor.VisitMemberAccessExpression(this);
47 return true;