Free cookie consent management tool by TermsFeed Policy Generator

source: tags/3.3.11/HeuristicLab.ExtLibs/HeuristicLab.NRefactory/5.5.0/NRefactory.CSharp-5.5.0/Resolver/NodeListResolveVisitorNavigator.cs @ 15261

Last change on this file since 15261 was 11700, checked in by jkarder, 10 years ago

#2077: created branch and added first version

File size: 3.0 KB
Line 
1// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy of this
4// software and associated documentation files (the "Software"), to deal in the Software
5// without restriction, including without limitation the rights to use, copy, modify, merge,
6// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
7// to whom the Software is furnished to do so, subject to the following conditions:
8//
9// The above copyright notice and this permission notice shall be included in all copies or
10// substantial portions of the Software.
11//
12// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
13// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
15// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
16// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17// DEALINGS IN THE SOFTWARE.
18
19using System;
20using System.Collections.Generic;
21using ICSharpCode.NRefactory.Semantics;
22using ICSharpCode.NRefactory.TypeSystem;
23
24namespace ICSharpCode.NRefactory.CSharp.Resolver
25{
26  /// <summary>
27  /// <see cref="IResolveVisitorNavigator"/> implementation that resolves a list of nodes.
28  /// We will skip all nodes which are not the target nodes or ancestors of the target nodes.
29  /// </summary>
30  public class NodeListResolveVisitorNavigator : IResolveVisitorNavigator
31  {
32    readonly Dictionary<AstNode, ResolveVisitorNavigationMode> dict = new Dictionary<AstNode, ResolveVisitorNavigationMode>();
33   
34    /// <summary>
35    /// Creates a new NodeListResolveVisitorNavigator that resolves the specified nodes.
36    /// </summary>
37    public NodeListResolveVisitorNavigator(params AstNode[] nodes)
38      : this((IEnumerable<AstNode>)nodes)
39    {
40    }
41   
42    /// <summary>
43    /// Creates a new NodeListResolveVisitorNavigator that resolves the specified nodes.
44    /// </summary>
45    public NodeListResolveVisitorNavigator(IEnumerable<AstNode> nodes, bool scanOnly = false)
46    {
47      if (nodes == null)
48        throw new ArgumentNullException("nodes");
49      foreach (var node in nodes) {
50        dict[node] = scanOnly ? ResolveVisitorNavigationMode.Scan : ResolveVisitorNavigationMode.Resolve;
51        for (var ancestor = node.Parent; ancestor != null && !dict.ContainsKey(ancestor); ancestor = ancestor.Parent) {
52          dict.Add(ancestor, ResolveVisitorNavigationMode.Scan);
53        }
54      }
55    }
56   
57    /// <inheritdoc/>
58    public virtual ResolveVisitorNavigationMode Scan(AstNode node)
59    {
60      ResolveVisitorNavigationMode mode;
61      if (dict.TryGetValue(node, out mode)) {
62        return mode;
63      } else {
64        return ResolveVisitorNavigationMode.Skip;
65      }
66    }
67   
68    public virtual void Resolved(AstNode node, ResolveResult result)
69    {
70    }
71   
72    public virtual void ProcessConversion(Expression expression, ResolveResult result, Conversion conversion, IType targetType)
73    {
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.