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