~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory.CSharp/Ast/Statements/BlockStatement.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// BlockStatement.cs
 
3
//
 
4
// Author:
 
5
//       Mike Krüger <mkrueger@novell.com>
 
6
// 
 
7
// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
 
8
// 
 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
10
// of this software and associated documentation files (the "Software"), to deal
 
11
// in the Software without restriction, including without limitation the rights
 
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
13
// copies of the Software, and to permit persons to whom the Software is
 
14
// furnished to do so, subject to the following conditions:
 
15
// 
 
16
// The above copyright notice and this permission notice shall be included in
 
17
// all copies or substantial portions of the Software.
 
18
// 
 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
25
// THE SOFTWARE.
 
26
 
 
27
using System.Collections.Generic;
 
28
 
 
29
namespace ICSharpCode.NRefactory.CSharp
 
30
{
 
31
        /// <summary>
 
32
        /// { Statements }
 
33
        /// </summary>
 
34
        public class BlockStatement : Statement, IEnumerable<Statement>
 
35
        {
 
36
                public static readonly Role<Statement> StatementRole = new Role<Statement>("Statement", Statement.Null);
 
37
                
 
38
                #region Null
 
39
                public static readonly new BlockStatement Null = new NullBlockStatement ();
 
40
                sealed class NullBlockStatement : BlockStatement
 
41
                {
 
42
                        public override bool IsNull {
 
43
                                get {
 
44
                                        return true;
 
45
                                }
 
46
                        }
 
47
                        
 
48
                        public override void AcceptVisitor (IAstVisitor visitor)
 
49
                        {
 
50
                        }
 
51
                                
 
52
                        public override T AcceptVisitor<T> (IAstVisitor<T> visitor)
 
53
                        {
 
54
                                return default (T);
 
55
                        }
 
56
 
 
57
                        public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
 
58
                        {
 
59
                                return default (S);
 
60
                        }
 
61
                        
 
62
                        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
 
63
                        {
 
64
                                return other == null || other.IsNull;
 
65
                        }
 
66
                }
 
67
                #endregion
 
68
                
 
69
                #region PatternPlaceholder
 
70
                public static implicit operator BlockStatement(PatternMatching.Pattern pattern)
 
71
                {
 
72
                        return pattern != null ? new PatternPlaceholder(pattern) : null;
 
73
                }
 
74
                
 
75
                sealed class PatternPlaceholder : BlockStatement, PatternMatching.INode
 
76
                {
 
77
                        readonly PatternMatching.Pattern child;
 
78
                        
 
79
                        public PatternPlaceholder(PatternMatching.Pattern child)
 
80
                        {
 
81
                                this.child = child;
 
82
                        }
 
83
                        
 
84
                        public override NodeType NodeType {
 
85
                                get { return NodeType.Pattern; }
 
86
                        }
 
87
                        
 
88
                        public override void AcceptVisitor (IAstVisitor visitor)
 
89
                        {
 
90
                                visitor.VisitPatternPlaceholder(this, child);
 
91
                        }
 
92
                                
 
93
                        public override T AcceptVisitor<T> (IAstVisitor<T> visitor)
 
94
                        {
 
95
                                return visitor.VisitPatternPlaceholder(this, child);
 
96
                        }
 
97
                        
 
98
                        public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)
 
99
                        {
 
100
                                return visitor.VisitPatternPlaceholder(this, child, data);
 
101
                        }
 
102
                        
 
103
                        protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
 
104
                        {
 
105
                                return child.DoMatch(other, match);
 
106
                        }
 
107
                        
 
108
                        bool PatternMatching.INode.DoMatchCollection(Role role, PatternMatching.INode pos, PatternMatching.Match match, PatternMatching.BacktrackingInfo backtrackingInfo)
 
109
                        {
 
110
                                return child.DoMatchCollection(role, pos, match, backtrackingInfo);
 
111
                        }
 
112
                }
 
113
                #endregion
 
114
                
 
115
                public CSharpTokenNode LBraceToken {
 
116
                        get { return GetChildByRole (Roles.LBrace); }
 
117
                }
 
118
                
 
119
                public AstNodeCollection<Statement> Statements {
 
120
                        get { return GetChildrenByRole (StatementRole); }
 
121
                }
 
122
                
 
123
                public CSharpTokenNode RBraceToken {
 
124
                        get { return GetChildByRole (Roles.RBrace); }
 
125
                }
 
126
                
 
127
                public override void AcceptVisitor (IAstVisitor visitor)
 
128
                {
 
129
                        visitor.VisitBlockStatement (this);
 
130
                }
 
131
                        
 
132
                public override T AcceptVisitor<T> (IAstVisitor<T> visitor)
 
133
                {
 
134
                        return visitor.VisitBlockStatement (this);
 
135
                }
 
136
                
 
137
                public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
 
138
                {
 
139
                        return visitor.VisitBlockStatement (this, data);
 
140
                }
 
141
                
 
142
                protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
 
143
                {
 
144
                        BlockStatement o = other as BlockStatement;
 
145
                        return o != null && !o.IsNull && this.Statements.DoMatch(o.Statements, match);
 
146
                }
 
147
                
 
148
                public void Add(Statement statement)
 
149
                {
 
150
                        AddChild(statement, StatementRole);
 
151
                }
 
152
                
 
153
                public void Add(Expression expression)
 
154
                {
 
155
                        AddChild(new ExpressionStatement(expression), StatementRole);
 
156
                }
 
157
                
 
158
                IEnumerator<Statement> IEnumerable<Statement>.GetEnumerator()
 
159
                {
 
160
                        return this.Statements.GetEnumerator();
 
161
                }
 
162
                
 
163
                System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
 
164
                {
 
165
                        return this.Statements.GetEnumerator();
 
166
                }
 
167
        }
 
168
}