/IronPython_Main/Languages/Ruby/Ruby/Compiler/Ast/Maplet.cs

# · C# · 44 lines · 22 code · 8 blank · 14 comment · 0 complexity · 9b8f2bec62ae71380b19d3c80e1ab681 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using Microsoft.Scripting;
  16. using Microsoft.Scripting.Utils;
  17. namespace IronRuby.Compiler.Ast {
  18. public partial class Maplet : Node {
  19. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2105:ArrayFieldsShouldNotBeReadOnly")]
  20. public static Maplet[] EmptyArray = new Maplet[0];
  21. private readonly Expression/*!*/ _key;
  22. private readonly Expression/*!*/ _value;
  23. public Expression/*!*/ Key {
  24. get { return _key; }
  25. }
  26. public Expression/*!*/ Value {
  27. get { return _value; }
  28. }
  29. public Maplet(Expression/*!*/ key, Expression/*!*/ value, SourceSpan location)
  30. : base(location) {
  31. Assert.NotNull(key, value);
  32. _key = key;
  33. _value = value;
  34. }
  35. }
  36. }