/NRefactory/ICSharpCode.NRefactory/Semantics/InvocationResolveResult.cs

http://github.com/icsharpcode/ILSpy · C# · 75 lines · 34 code · 8 blank · 33 comment · 0 complexity · 0408f554e904f3b707ef2f05b4162cfe 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 System.Collections.Generic;
  20. using System.Linq;
  21. using ICSharpCode.NRefactory.TypeSystem;
  22. namespace ICSharpCode.NRefactory.Semantics
  23. {
  24. /// <summary>
  25. /// Represents the result of a method, constructor or indexer invocation.
  26. /// </summary>
  27. public class InvocationResolveResult : MemberResolveResult
  28. {
  29. /// <summary>
  30. /// Gets the arguments that are being passed to the method, in the order the arguments are being evaluated.
  31. /// </summary>
  32. public readonly IList<ResolveResult> Arguments;
  33. /// <summary>
  34. /// Gets the list of initializer statements that are appplied to the result of this invocation.
  35. /// This is used to represent object and collection initializers.
  36. /// With the initializer statements, the <see cref="InitializedObjectResolveResult"/> is used
  37. /// to refer to the result of this invocation.
  38. /// </summary>
  39. public readonly IList<ResolveResult> InitializerStatements;
  40. public InvocationResolveResult(ResolveResult targetResult, IParameterizedMember member,
  41. IList<ResolveResult> arguments = null,
  42. IList<ResolveResult> initializerStatements = null,
  43. IType returnTypeOverride = null)
  44. : base(targetResult, member, returnTypeOverride)
  45. {
  46. this.Arguments = arguments ?? EmptyList<ResolveResult>.Instance;
  47. this.InitializerStatements = initializerStatements ?? EmptyList<ResolveResult>.Instance;
  48. }
  49. public new IParameterizedMember Member {
  50. get { return (IParameterizedMember)base.Member; }
  51. }
  52. /// <summary>
  53. /// Gets the arguments in the order they are being passed to the method.
  54. /// For parameter arrays (params), this will return an ArrayCreateResolveResult.
  55. /// </summary>
  56. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
  57. Justification = "Derived methods may be expensive and create new lists")]
  58. public virtual IList<ResolveResult> GetArgumentsForCall()
  59. {
  60. return Arguments;
  61. }
  62. public override IEnumerable<ResolveResult> GetChildResults()
  63. {
  64. return base.GetChildResults().Concat(this.Arguments).Concat(this.InitializerStatements);
  65. }
  66. }
  67. }