Example #1
0
 internal SpecializedDictionaryMethod(BuiltinMethodInfo method, DictionaryInfo myDict)
     : base(method)
 {
     _myDict = myDict;
 }
Example #2
0
 public UpdateItemsAnalysisUnit(DictionaryInfo dictInfo)
     : base(null, dictInfo.DeclaringModule.MyScope.Scope)
 {
     _dictInfo = dictInfo;
 }
Example #3
0
 internal DictionaryValuesListBoundMethod(BuiltinMethodInfo method, DictionaryInfo myDict)
     : base(method, myDict)
 {
 }
Example #4
0
 internal DictionaryUpdateBoundMethod(BuiltinMethodInfo method, DictionaryInfo myDict)
     : base(method, myDict)
 {
 }
Example #5
0
 internal DictionaryKeyValueTupleBoundMethod(BuiltinMethodInfo method, DictionaryInfo myDict)
     : base(method, myDict)
 {
 }
Example #6
0
 internal DictionaryKeysIterableBoundMethod(BuiltinMethodInfo method, DictionaryInfo myDict)
     : base(method, myDict)
 {
 }
Example #7
0
 internal bool CopyFrom(DictionaryInfo other, bool enqueue = true)
 {
     return _keysAndValues.CopyFrom(other._keysAndValues, enqueue);
 }