/NRefactory/ICSharpCode.NRefactory.CSharp/Resolver/IResolveVisitorNavigator.cs

http://github.com/icsharpcode/ILSpy · C# · 103 lines · 42 code · 10 blank · 51 comment · 4 complexity · c012942c8ffbb9b79036df5af461a5bc MD5 · raw file

  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. using System;
  19. using ICSharpCode.NRefactory.Semantics;
  20. using ICSharpCode.NRefactory.TypeSystem;
  21. namespace ICSharpCode.NRefactory.CSharp.Resolver
  22. {
  23. /// <summary>
  24. /// Allows controlling which nodes are resolved by the resolve visitor.
  25. /// </summary>
  26. /// <seealso cref="ResolveVisitor"/>
  27. public interface IResolveVisitorNavigator
  28. {
  29. /// <summary>
  30. /// Asks the navigator whether to scan, skip, or resolve a node.
  31. /// </summary>
  32. ResolveVisitorNavigationMode Scan(AstNode node);
  33. /// <summary>
  34. /// Notifies the navigator that a node was resolved.
  35. /// </summary>
  36. /// <param name="node">The node that was resolved</param>
  37. /// <param name="result">Resolve result</param>
  38. void Resolved(AstNode node, ResolveResult result);
  39. /// <summary>
  40. /// Notifies the navigator that an implicit conversion was applied.
  41. /// </summary>
  42. /// <param name="expression">The expression that was resolved.</param>
  43. /// <param name="result">The resolve result of the expression.</param>
  44. /// <param name="conversion">The conversion applied to the expressed.</param>
  45. /// <param name="targetType">The target type of the conversion.</param>
  46. void ProcessConversion(Expression expression, ResolveResult result, Conversion conversion, IType targetType);
  47. }
  48. /// <summary>
  49. /// Represents the operation mode of the resolve visitor.
  50. /// </summary>
  51. /// <seealso cref="ResolveVisitor"/>
  52. public enum ResolveVisitorNavigationMode
  53. {
  54. /// <summary>
  55. /// Scan into the children of the current node, without resolving the current node.
  56. /// </summary>
  57. Scan,
  58. /// <summary>
  59. /// Skip the current node - do not scan into it; do not resolve it.
  60. /// </summary>
  61. Skip,
  62. /// <summary>
  63. /// Resolve the current node.
  64. /// Subnodes which are not required for resolving the current node
  65. /// will ask the navigator again whether they should be resolved.
  66. /// </summary>
  67. Resolve
  68. }
  69. sealed class ConstantModeResolveVisitorNavigator : IResolveVisitorNavigator
  70. {
  71. readonly ResolveVisitorNavigationMode mode;
  72. readonly IResolveVisitorNavigator targetForResolveCalls;
  73. public ConstantModeResolveVisitorNavigator(ResolveVisitorNavigationMode mode, IResolveVisitorNavigator targetForResolveCalls)
  74. {
  75. this.mode = mode;
  76. this.targetForResolveCalls = targetForResolveCalls;
  77. }
  78. ResolveVisitorNavigationMode IResolveVisitorNavigator.Scan(AstNode node)
  79. {
  80. return mode;
  81. }
  82. void IResolveVisitorNavigator.Resolved(AstNode node, ResolveResult result)
  83. {
  84. if (targetForResolveCalls != null)
  85. targetForResolveCalls.Resolved(node, result);
  86. }
  87. void IResolveVisitorNavigator.ProcessConversion(Expression expression, ResolveResult result, Conversion conversion, IType targetType)
  88. {
  89. if (targetForResolveCalls != null)
  90. targetForResolveCalls.ProcessConversion(expression, result, conversion, targetType);
  91. }
  92. }
  93. }