예제 #1
0
 public DictLiteral(DictEntryList entries, bool mutable)
     : base(entries.ToString(), new DictValue(MissingType.Instance, mutable))
 {
     this.entries = entries;
     this.mutable = mutable;
 }
예제 #2
0
 public DictLiteral(bool mutable)
     : base("<:>", new DictValue(MissingType.Instance, mutable))
 {
     this.entries = new DictEntryList();
     this.mutable = mutable;
 }