PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,1815 @@
1
+ import typing, clr, abc
2
+ from System.Reflection import MethodInfo, PropertyInfo, MemberInfo, FieldInfo, ConstructorInfo
3
+ from System.Collections.ObjectModel import ReadOnlyCollection_1
4
+ from System.Collections.Generic import IEnumerable_1
5
+ from System.Runtime.CompilerServices import CallSiteBinder, DebugInfoGenerator
6
+ from System import Array_1, Guid, Delegate
7
+
8
+ class BinaryExpression(Expression_0):
9
+ @property
10
+ def CanReduce(self) -> bool: ...
11
+ @property
12
+ def Conversion(self) -> LambdaExpression: ...
13
+ @property
14
+ def IsLifted(self) -> bool: ...
15
+ @property
16
+ def IsLiftedToNull(self) -> bool: ...
17
+ @property
18
+ def Left(self) -> Expression: ...
19
+ @property
20
+ def Method(self) -> MethodInfo: ...
21
+ @property
22
+ def NodeType(self) -> ExpressionType: ...
23
+ @property
24
+ def Right(self) -> Expression: ...
25
+ @property
26
+ def Type(self) -> typing.Type[typing.Any]: ...
27
+ def Reduce(self) -> Expression: ...
28
+ def Update(self, left: Expression, conversion: LambdaExpression, right: Expression) -> BinaryExpression: ...
29
+
30
+
31
+ class BlockExpression(Expression_0):
32
+ @property
33
+ def CanReduce(self) -> bool: ...
34
+ @property
35
+ def Expressions(self) -> ReadOnlyCollection_1[Expression]: ...
36
+ @property
37
+ def NodeType(self) -> ExpressionType: ...
38
+ @property
39
+ def Result(self) -> Expression: ...
40
+ @property
41
+ def Type(self) -> typing.Type[typing.Any]: ...
42
+ @property
43
+ def Variables(self) -> ReadOnlyCollection_1[ParameterExpression]: ...
44
+ def Update(self, variables: IEnumerable_1[ParameterExpression], expressions: IEnumerable_1[Expression]) -> BlockExpression: ...
45
+
46
+
47
+ class CatchBlock:
48
+ @property
49
+ def Body(self) -> Expression: ...
50
+ @property
51
+ def Filter(self) -> Expression: ...
52
+ @property
53
+ def Test(self) -> typing.Type[typing.Any]: ...
54
+ @property
55
+ def Variable(self) -> ParameterExpression: ...
56
+ def ToString(self) -> str: ...
57
+ def Update(self, variable: ParameterExpression, filter: Expression, body: Expression) -> CatchBlock: ...
58
+
59
+
60
+ class ConditionalExpression(Expression_0):
61
+ @property
62
+ def CanReduce(self) -> bool: ...
63
+ @property
64
+ def IfFalse(self) -> Expression: ...
65
+ @property
66
+ def IfTrue(self) -> Expression: ...
67
+ @property
68
+ def NodeType(self) -> ExpressionType: ...
69
+ @property
70
+ def Test(self) -> Expression: ...
71
+ @property
72
+ def Type(self) -> typing.Type[typing.Any]: ...
73
+ def Update(self, test: Expression, ifTrue: Expression, ifFalse: Expression) -> ConditionalExpression: ...
74
+
75
+
76
+ class ConstantExpression(Expression_0):
77
+ @property
78
+ def CanReduce(self) -> bool: ...
79
+ @property
80
+ def NodeType(self) -> ExpressionType: ...
81
+ @property
82
+ def Type(self) -> typing.Type[typing.Any]: ...
83
+ @property
84
+ def Value(self) -> typing.Any: ...
85
+
86
+
87
+ class DebugInfoExpression(Expression_0):
88
+ @property
89
+ def CanReduce(self) -> bool: ...
90
+ @property
91
+ def Document(self) -> SymbolDocumentInfo: ...
92
+ @property
93
+ def EndColumn(self) -> int: ...
94
+ @property
95
+ def EndLine(self) -> int: ...
96
+ @property
97
+ def IsClear(self) -> bool: ...
98
+ @property
99
+ def NodeType(self) -> ExpressionType: ...
100
+ @property
101
+ def StartColumn(self) -> int: ...
102
+ @property
103
+ def StartLine(self) -> int: ...
104
+ @property
105
+ def Type(self) -> typing.Type[typing.Any]: ...
106
+
107
+
108
+ class DefaultExpression(Expression_0):
109
+ @property
110
+ def CanReduce(self) -> bool: ...
111
+ @property
112
+ def NodeType(self) -> ExpressionType: ...
113
+ @property
114
+ def Type(self) -> typing.Type[typing.Any]: ...
115
+
116
+
117
+ class DynamicExpression(Expression_0, IDynamicExpression):
118
+ @property
119
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
120
+ @property
121
+ def Binder(self) -> CallSiteBinder: ...
122
+ @property
123
+ def CanReduce(self) -> bool: ...
124
+ @property
125
+ def DelegateType(self) -> typing.Type[typing.Any]: ...
126
+ @property
127
+ def NodeType(self) -> ExpressionType: ...
128
+ @property
129
+ def Type(self) -> typing.Type[typing.Any]: ...
130
+ def Reduce(self) -> Expression: ...
131
+ def Update(self, arguments: IEnumerable_1[Expression]) -> DynamicExpression: ...
132
+ # Skipped Dynamic due to it being static, abstract and generic.
133
+
134
+ Dynamic : Dynamic_MethodGroup
135
+ class Dynamic_MethodGroup:
136
+ @typing.overload
137
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arguments: Array_1[Expression]) -> DynamicExpression:...
138
+ @typing.overload
139
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arguments: IEnumerable_1[Expression]) -> DynamicExpression:...
140
+ @typing.overload
141
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression) -> DynamicExpression:...
142
+ @typing.overload
143
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression) -> DynamicExpression:...
144
+ @typing.overload
145
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression, arg2: Expression) -> DynamicExpression:...
146
+ @typing.overload
147
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> DynamicExpression:...
148
+
149
+ # Skipped MakeDynamic due to it being static, abstract and generic.
150
+
151
+ MakeDynamic : MakeDynamic_MethodGroup
152
+ class MakeDynamic_MethodGroup:
153
+ @typing.overload
154
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arguments: Array_1[Expression]) -> DynamicExpression:...
155
+ @typing.overload
156
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arguments: IEnumerable_1[Expression]) -> DynamicExpression:...
157
+ @typing.overload
158
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression) -> DynamicExpression:...
159
+ @typing.overload
160
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression) -> DynamicExpression:...
161
+ @typing.overload
162
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression) -> DynamicExpression:...
163
+ @typing.overload
164
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> DynamicExpression:...
165
+
166
+
167
+
168
+ class ElementInit(IArgumentProvider):
169
+ @property
170
+ def AddMethod(self) -> MethodInfo: ...
171
+ @property
172
+ def ArgumentCount(self) -> int: ...
173
+ @property
174
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
175
+ def GetArgument(self, index: int) -> Expression: ...
176
+ def ToString(self) -> str: ...
177
+ def Update(self, arguments: IEnumerable_1[Expression]) -> ElementInit: ...
178
+
179
+
180
+ class Expression_GenericClasses(abc.ABCMeta):
181
+ Generic_Expression_GenericClasses_Expression_1_TDelegate = typing.TypeVar('Generic_Expression_GenericClasses_Expression_1_TDelegate')
182
+ def __getitem__(self, types : typing.Type[Generic_Expression_GenericClasses_Expression_1_TDelegate]) -> typing.Type[Expression_1[Generic_Expression_GenericClasses_Expression_1_TDelegate]]: ...
183
+
184
+ class Expression(Expression_0, metaclass =Expression_GenericClasses): ...
185
+
186
+ class Expression_0(abc.ABC):
187
+ @property
188
+ def CanReduce(self) -> bool: ...
189
+ @property
190
+ def NodeType(self) -> ExpressionType: ...
191
+ @property
192
+ def Type(self) -> typing.Type[typing.Any]: ...
193
+ @staticmethod
194
+ def ArrayLength(array: Expression) -> UnaryExpression: ...
195
+ @staticmethod
196
+ def Assign(left: Expression, right: Expression) -> BinaryExpression: ...
197
+ @staticmethod
198
+ def ClearDebugInfo(document: SymbolDocumentInfo) -> DebugInfoExpression: ...
199
+ @staticmethod
200
+ def DebugInfo(document: SymbolDocumentInfo, startLine: int, startColumn: int, endLine: int, endColumn: int) -> DebugInfoExpression: ...
201
+ @staticmethod
202
+ def Default(type: typing.Type[typing.Any]) -> DefaultExpression: ...
203
+ @staticmethod
204
+ def Empty() -> DefaultExpression: ...
205
+ @staticmethod
206
+ def GetActionType(typeArgs: Array_1[typing.Type[typing.Any]]) -> typing.Type[typing.Any]: ...
207
+ @staticmethod
208
+ def GetDelegateType(typeArgs: Array_1[typing.Type[typing.Any]]) -> typing.Type[typing.Any]: ...
209
+ @staticmethod
210
+ def GetFuncType(typeArgs: Array_1[typing.Type[typing.Any]]) -> typing.Type[typing.Any]: ...
211
+ @staticmethod
212
+ def IfThen(test: Expression, ifTrue: Expression) -> ConditionalExpression: ...
213
+ @staticmethod
214
+ def IfThenElse(test: Expression, ifTrue: Expression, ifFalse: Expression) -> ConditionalExpression: ...
215
+ @staticmethod
216
+ def MakeCatchBlock(type: typing.Type[typing.Any], variable: ParameterExpression, body: Expression, filter: Expression) -> CatchBlock: ...
217
+ @staticmethod
218
+ def MakeGoto(kind: GotoExpressionKind, target: LabelTarget, value: Expression, type: typing.Type[typing.Any]) -> GotoExpression: ...
219
+ @staticmethod
220
+ def MakeIndex(instance: Expression, indexer: PropertyInfo, arguments: IEnumerable_1[Expression]) -> IndexExpression: ...
221
+ @staticmethod
222
+ def MakeMemberAccess(expression: Expression, member: MemberInfo) -> MemberExpression: ...
223
+ @staticmethod
224
+ def MakeTry(type: typing.Type[typing.Any], body: Expression, finally: Expression, fault: Expression, handlers: IEnumerable_1[CatchBlock]) -> TryExpression: ...
225
+ @staticmethod
226
+ def PropertyOrField(expression: Expression, propertyOrFieldName: str) -> MemberExpression: ...
227
+ @staticmethod
228
+ def Quote(expression: Expression) -> UnaryExpression: ...
229
+ def Reduce(self) -> Expression: ...
230
+ def ReduceAndCheck(self) -> Expression: ...
231
+ def ReduceExtensions(self) -> Expression: ...
232
+ @staticmethod
233
+ def ReferenceEqual(left: Expression, right: Expression) -> BinaryExpression: ...
234
+ @staticmethod
235
+ def ReferenceNotEqual(left: Expression, right: Expression) -> BinaryExpression: ...
236
+ def ToString(self) -> str: ...
237
+ @staticmethod
238
+ def TryCatch(body: Expression, handlers: Array_1[CatchBlock]) -> TryExpression: ...
239
+ @staticmethod
240
+ def TryCatchFinally(body: Expression, finally: Expression, handlers: Array_1[CatchBlock]) -> TryExpression: ...
241
+ @staticmethod
242
+ def TryFault(body: Expression, fault: Expression) -> TryExpression: ...
243
+ @staticmethod
244
+ def TryFinally(body: Expression, finally: Expression) -> TryExpression: ...
245
+ @staticmethod
246
+ def TryGetActionType(typeArgs: Array_1[typing.Type[typing.Any]], actionType: clr.Reference[typing.Type[typing.Any]]) -> bool: ...
247
+ @staticmethod
248
+ def TryGetFuncType(typeArgs: Array_1[typing.Type[typing.Any]], funcType: clr.Reference[typing.Type[typing.Any]]) -> bool: ...
249
+ @staticmethod
250
+ def TypeAs(expression: Expression, type: typing.Type[typing.Any]) -> UnaryExpression: ...
251
+ @staticmethod
252
+ def TypeEqual(expression: Expression, type: typing.Type[typing.Any]) -> TypeBinaryExpression: ...
253
+ @staticmethod
254
+ def TypeIs(expression: Expression, type: typing.Type[typing.Any]) -> TypeBinaryExpression: ...
255
+ @staticmethod
256
+ def Unbox(expression: Expression, type: typing.Type[typing.Any]) -> UnaryExpression: ...
257
+ # Skipped Add due to it being static, abstract and generic.
258
+
259
+ Add : Add_MethodGroup
260
+ class Add_MethodGroup:
261
+ @typing.overload
262
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
263
+ @typing.overload
264
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
265
+
266
+ # Skipped AddAssign due to it being static, abstract and generic.
267
+
268
+ AddAssign : AddAssign_MethodGroup
269
+ class AddAssign_MethodGroup:
270
+ @typing.overload
271
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
272
+ @typing.overload
273
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
274
+ @typing.overload
275
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
276
+
277
+ # Skipped AddAssignChecked due to it being static, abstract and generic.
278
+
279
+ AddAssignChecked : AddAssignChecked_MethodGroup
280
+ class AddAssignChecked_MethodGroup:
281
+ @typing.overload
282
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
283
+ @typing.overload
284
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
285
+ @typing.overload
286
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
287
+
288
+ # Skipped AddChecked due to it being static, abstract and generic.
289
+
290
+ AddChecked : AddChecked_MethodGroup
291
+ class AddChecked_MethodGroup:
292
+ @typing.overload
293
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
294
+ @typing.overload
295
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
296
+
297
+ # Skipped And due to it being static, abstract and generic.
298
+
299
+ And : And_MethodGroup
300
+ class And_MethodGroup:
301
+ @typing.overload
302
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
303
+ @typing.overload
304
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
305
+
306
+ # Skipped AndAlso due to it being static, abstract and generic.
307
+
308
+ AndAlso : AndAlso_MethodGroup
309
+ class AndAlso_MethodGroup:
310
+ @typing.overload
311
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
312
+ @typing.overload
313
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
314
+
315
+ # Skipped AndAssign due to it being static, abstract and generic.
316
+
317
+ AndAssign : AndAssign_MethodGroup
318
+ class AndAssign_MethodGroup:
319
+ @typing.overload
320
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
321
+ @typing.overload
322
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
323
+ @typing.overload
324
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
325
+
326
+ # Skipped ArrayAccess due to it being static, abstract and generic.
327
+
328
+ ArrayAccess : ArrayAccess_MethodGroup
329
+ class ArrayAccess_MethodGroup:
330
+ @typing.overload
331
+ def __call__(self, array: Expression, indexes: Array_1[Expression]) -> IndexExpression:...
332
+ @typing.overload
333
+ def __call__(self, array: Expression, indexes: IEnumerable_1[Expression]) -> IndexExpression:...
334
+
335
+ # Skipped ArrayIndex due to it being static, abstract and generic.
336
+
337
+ ArrayIndex : ArrayIndex_MethodGroup
338
+ class ArrayIndex_MethodGroup:
339
+ @typing.overload
340
+ def __call__(self, array: Expression, indexes: Array_1[Expression]) -> MethodCallExpression:...
341
+ @typing.overload
342
+ def __call__(self, array: Expression, indexes: IEnumerable_1[Expression]) -> MethodCallExpression:...
343
+ @typing.overload
344
+ def __call__(self, array: Expression, index: Expression) -> BinaryExpression:...
345
+
346
+ # Skipped Bind due to it being static, abstract and generic.
347
+
348
+ Bind : Bind_MethodGroup
349
+ class Bind_MethodGroup:
350
+ @typing.overload
351
+ def __call__(self, propertyAccessor: MethodInfo, expression: Expression) -> MemberAssignment:...
352
+ @typing.overload
353
+ def __call__(self, member: MemberInfo, expression: Expression) -> MemberAssignment:...
354
+
355
+ # Skipped Block due to it being static, abstract and generic.
356
+
357
+ Block : Block_MethodGroup
358
+ class Block_MethodGroup:
359
+ @typing.overload
360
+ def __call__(self, expressions: Array_1[Expression]) -> BlockExpression:...
361
+ @typing.overload
362
+ def __call__(self, expressions: IEnumerable_1[Expression]) -> BlockExpression:...
363
+ @typing.overload
364
+ def __call__(self, type: typing.Type[typing.Any], expressions: Array_1[Expression]) -> BlockExpression:...
365
+ @typing.overload
366
+ def __call__(self, type: typing.Type[typing.Any], expressions: IEnumerable_1[Expression]) -> BlockExpression:...
367
+ @typing.overload
368
+ def __call__(self, variables: IEnumerable_1[ParameterExpression], expressions: Array_1[Expression]) -> BlockExpression:...
369
+ @typing.overload
370
+ def __call__(self, variables: IEnumerable_1[ParameterExpression], expressions: IEnumerable_1[Expression]) -> BlockExpression:...
371
+ @typing.overload
372
+ def __call__(self, arg0: Expression, arg1: Expression) -> BlockExpression:...
373
+ @typing.overload
374
+ def __call__(self, type: typing.Type[typing.Any], variables: IEnumerable_1[ParameterExpression], expressions: Array_1[Expression]) -> BlockExpression:...
375
+ @typing.overload
376
+ def __call__(self, type: typing.Type[typing.Any], variables: IEnumerable_1[ParameterExpression], expressions: IEnumerable_1[Expression]) -> BlockExpression:...
377
+ @typing.overload
378
+ def __call__(self, arg0: Expression, arg1: Expression, arg2: Expression) -> BlockExpression:...
379
+ @typing.overload
380
+ def __call__(self, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> BlockExpression:...
381
+ @typing.overload
382
+ def __call__(self, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression, arg4: Expression) -> BlockExpression:...
383
+
384
+ # Skipped Break due to it being static, abstract and generic.
385
+
386
+ Break : Break_MethodGroup
387
+ class Break_MethodGroup:
388
+ @typing.overload
389
+ def __call__(self, target: LabelTarget) -> GotoExpression:...
390
+ @typing.overload
391
+ def __call__(self, target: LabelTarget, type: typing.Type[typing.Any]) -> GotoExpression:...
392
+ @typing.overload
393
+ def __call__(self, target: LabelTarget, value: Expression) -> GotoExpression:...
394
+ @typing.overload
395
+ def __call__(self, target: LabelTarget, value: Expression, type: typing.Type[typing.Any]) -> GotoExpression:...
396
+
397
+ # Skipped Call due to it being static, abstract and generic.
398
+
399
+ Call : Call_MethodGroup
400
+ class Call_MethodGroup:
401
+ @typing.overload
402
+ def __call__(self, method: MethodInfo, arguments: Array_1[Expression]) -> MethodCallExpression:...
403
+ @typing.overload
404
+ def __call__(self, method: MethodInfo, arguments: IEnumerable_1[Expression]) -> MethodCallExpression:...
405
+ @typing.overload
406
+ def __call__(self, method: MethodInfo, arg0: Expression) -> MethodCallExpression:...
407
+ @typing.overload
408
+ def __call__(self, instance: Expression, method: MethodInfo) -> MethodCallExpression:...
409
+ @typing.overload
410
+ def __call__(self, method: MethodInfo, arg0: Expression, arg1: Expression) -> MethodCallExpression:...
411
+ @typing.overload
412
+ def __call__(self, instance: Expression, method: MethodInfo, arguments: Array_1[Expression]) -> MethodCallExpression:...
413
+ @typing.overload
414
+ def __call__(self, instance: Expression, method: MethodInfo, arguments: IEnumerable_1[Expression]) -> MethodCallExpression:...
415
+ @typing.overload
416
+ def __call__(self, method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression) -> MethodCallExpression:...
417
+ @typing.overload
418
+ def __call__(self, type: typing.Type[typing.Any], methodName: str, typeArguments: Array_1[typing.Type[typing.Any]], arguments: Array_1[Expression]) -> MethodCallExpression:...
419
+ @typing.overload
420
+ def __call__(self, instance: Expression, method: MethodInfo, arg0: Expression, arg1: Expression) -> MethodCallExpression:...
421
+ @typing.overload
422
+ def __call__(self, instance: Expression, methodName: str, typeArguments: Array_1[typing.Type[typing.Any]], arguments: Array_1[Expression]) -> MethodCallExpression:...
423
+ @typing.overload
424
+ def __call__(self, method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> MethodCallExpression:...
425
+ @typing.overload
426
+ def __call__(self, instance: Expression, method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression) -> MethodCallExpression:...
427
+ @typing.overload
428
+ def __call__(self, method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression, arg4: Expression) -> MethodCallExpression:...
429
+
430
+ # Skipped Catch due to it being static, abstract and generic.
431
+
432
+ Catch : Catch_MethodGroup
433
+ class Catch_MethodGroup:
434
+ @typing.overload
435
+ def __call__(self, type: typing.Type[typing.Any], body: Expression) -> CatchBlock:...
436
+ @typing.overload
437
+ def __call__(self, variable: ParameterExpression, body: Expression) -> CatchBlock:...
438
+ @typing.overload
439
+ def __call__(self, type: typing.Type[typing.Any], body: Expression, filter: Expression) -> CatchBlock:...
440
+ @typing.overload
441
+ def __call__(self, variable: ParameterExpression, body: Expression, filter: Expression) -> CatchBlock:...
442
+
443
+ # Skipped Coalesce due to it being static, abstract and generic.
444
+
445
+ Coalesce : Coalesce_MethodGroup
446
+ class Coalesce_MethodGroup:
447
+ @typing.overload
448
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
449
+ @typing.overload
450
+ def __call__(self, left: Expression, right: Expression, conversion: LambdaExpression) -> BinaryExpression:...
451
+
452
+ # Skipped Condition due to it being static, abstract and generic.
453
+
454
+ Condition : Condition_MethodGroup
455
+ class Condition_MethodGroup:
456
+ @typing.overload
457
+ def __call__(self, test: Expression, ifTrue: Expression, ifFalse: Expression) -> ConditionalExpression:...
458
+ @typing.overload
459
+ def __call__(self, test: Expression, ifTrue: Expression, ifFalse: Expression, type: typing.Type[typing.Any]) -> ConditionalExpression:...
460
+
461
+ # Skipped Constant due to it being static, abstract and generic.
462
+
463
+ Constant : Constant_MethodGroup
464
+ class Constant_MethodGroup:
465
+ @typing.overload
466
+ def __call__(self, value: typing.Any) -> ConstantExpression:...
467
+ @typing.overload
468
+ def __call__(self, value: typing.Any, type: typing.Type[typing.Any]) -> ConstantExpression:...
469
+
470
+ # Skipped Continue due to it being static, abstract and generic.
471
+
472
+ Continue : Continue_MethodGroup
473
+ class Continue_MethodGroup:
474
+ @typing.overload
475
+ def __call__(self, target: LabelTarget) -> GotoExpression:...
476
+ @typing.overload
477
+ def __call__(self, target: LabelTarget, type: typing.Type[typing.Any]) -> GotoExpression:...
478
+
479
+ # Skipped Convert due to it being static, abstract and generic.
480
+
481
+ Convert : Convert_MethodGroup
482
+ class Convert_MethodGroup:
483
+ @typing.overload
484
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any]) -> UnaryExpression:...
485
+ @typing.overload
486
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any], method: MethodInfo) -> UnaryExpression:...
487
+
488
+ # Skipped ConvertChecked due to it being static, abstract and generic.
489
+
490
+ ConvertChecked : ConvertChecked_MethodGroup
491
+ class ConvertChecked_MethodGroup:
492
+ @typing.overload
493
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any]) -> UnaryExpression:...
494
+ @typing.overload
495
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any], method: MethodInfo) -> UnaryExpression:...
496
+
497
+ # Skipped Decrement due to it being static, abstract and generic.
498
+
499
+ Decrement : Decrement_MethodGroup
500
+ class Decrement_MethodGroup:
501
+ @typing.overload
502
+ def __call__(self, expression: Expression) -> UnaryExpression:...
503
+ @typing.overload
504
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
505
+
506
+ # Skipped Divide due to it being static, abstract and generic.
507
+
508
+ Divide : Divide_MethodGroup
509
+ class Divide_MethodGroup:
510
+ @typing.overload
511
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
512
+ @typing.overload
513
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
514
+
515
+ # Skipped DivideAssign due to it being static, abstract and generic.
516
+
517
+ DivideAssign : DivideAssign_MethodGroup
518
+ class DivideAssign_MethodGroup:
519
+ @typing.overload
520
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
521
+ @typing.overload
522
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
523
+ @typing.overload
524
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
525
+
526
+ # Skipped Dynamic due to it being static, abstract and generic.
527
+
528
+ Dynamic : Dynamic_MethodGroup
529
+ class Dynamic_MethodGroup:
530
+ @typing.overload
531
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arguments: Array_1[Expression]) -> DynamicExpression:...
532
+ @typing.overload
533
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arguments: IEnumerable_1[Expression]) -> DynamicExpression:...
534
+ @typing.overload
535
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression) -> DynamicExpression:...
536
+ @typing.overload
537
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression) -> DynamicExpression:...
538
+ @typing.overload
539
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression, arg2: Expression) -> DynamicExpression:...
540
+ @typing.overload
541
+ def __call__(self, binder: CallSiteBinder, returnType: typing.Type[typing.Any], arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> DynamicExpression:...
542
+
543
+ # Skipped ElementInit due to it being static, abstract and generic.
544
+
545
+ ElementInit : ElementInit_MethodGroup
546
+ class ElementInit_MethodGroup:
547
+ @typing.overload
548
+ def __call__(self, addMethod: MethodInfo, arguments: Array_1[Expression]) -> ElementInit:...
549
+ @typing.overload
550
+ def __call__(self, addMethod: MethodInfo, arguments: IEnumerable_1[Expression]) -> ElementInit:...
551
+
552
+ # Skipped Equal due to it being static, abstract and generic.
553
+
554
+ Equal : Equal_MethodGroup
555
+ class Equal_MethodGroup:
556
+ @typing.overload
557
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
558
+ @typing.overload
559
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
560
+
561
+ # Skipped ExclusiveOr due to it being static, abstract and generic.
562
+
563
+ ExclusiveOr : ExclusiveOr_MethodGroup
564
+ class ExclusiveOr_MethodGroup:
565
+ @typing.overload
566
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
567
+ @typing.overload
568
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
569
+
570
+ # Skipped ExclusiveOrAssign due to it being static, abstract and generic.
571
+
572
+ ExclusiveOrAssign : ExclusiveOrAssign_MethodGroup
573
+ class ExclusiveOrAssign_MethodGroup:
574
+ @typing.overload
575
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
576
+ @typing.overload
577
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
578
+ @typing.overload
579
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
580
+
581
+ # Skipped Field due to it being static, abstract and generic.
582
+
583
+ Field : Field_MethodGroup
584
+ class Field_MethodGroup:
585
+ @typing.overload
586
+ def __call__(self, expression: Expression, field: FieldInfo) -> MemberExpression:...
587
+ @typing.overload
588
+ def __call__(self, expression: Expression, fieldName: str) -> MemberExpression:...
589
+ @typing.overload
590
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any], fieldName: str) -> MemberExpression:...
591
+
592
+ # Skipped Goto due to it being static, abstract and generic.
593
+
594
+ Goto : Goto_MethodGroup
595
+ class Goto_MethodGroup:
596
+ @typing.overload
597
+ def __call__(self, target: LabelTarget) -> GotoExpression:...
598
+ @typing.overload
599
+ def __call__(self, target: LabelTarget, type: typing.Type[typing.Any]) -> GotoExpression:...
600
+ @typing.overload
601
+ def __call__(self, target: LabelTarget, value: Expression) -> GotoExpression:...
602
+ @typing.overload
603
+ def __call__(self, target: LabelTarget, value: Expression, type: typing.Type[typing.Any]) -> GotoExpression:...
604
+
605
+ # Skipped GreaterThan due to it being static, abstract and generic.
606
+
607
+ GreaterThan : GreaterThan_MethodGroup
608
+ class GreaterThan_MethodGroup:
609
+ @typing.overload
610
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
611
+ @typing.overload
612
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
613
+
614
+ # Skipped GreaterThanOrEqual due to it being static, abstract and generic.
615
+
616
+ GreaterThanOrEqual : GreaterThanOrEqual_MethodGroup
617
+ class GreaterThanOrEqual_MethodGroup:
618
+ @typing.overload
619
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
620
+ @typing.overload
621
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
622
+
623
+ # Skipped Increment due to it being static, abstract and generic.
624
+
625
+ Increment : Increment_MethodGroup
626
+ class Increment_MethodGroup:
627
+ @typing.overload
628
+ def __call__(self, expression: Expression) -> UnaryExpression:...
629
+ @typing.overload
630
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
631
+
632
+ # Skipped Invoke due to it being static, abstract and generic.
633
+
634
+ Invoke : Invoke_MethodGroup
635
+ class Invoke_MethodGroup:
636
+ @typing.overload
637
+ def __call__(self, expression: Expression, arguments: Array_1[Expression]) -> InvocationExpression:...
638
+ @typing.overload
639
+ def __call__(self, expression: Expression, arguments: IEnumerable_1[Expression]) -> InvocationExpression:...
640
+
641
+ # Skipped IsFalse due to it being static, abstract and generic.
642
+
643
+ IsFalse : IsFalse_MethodGroup
644
+ class IsFalse_MethodGroup:
645
+ @typing.overload
646
+ def __call__(self, expression: Expression) -> UnaryExpression:...
647
+ @typing.overload
648
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
649
+
650
+ # Skipped IsTrue due to it being static, abstract and generic.
651
+
652
+ IsTrue : IsTrue_MethodGroup
653
+ class IsTrue_MethodGroup:
654
+ @typing.overload
655
+ def __call__(self, expression: Expression) -> UnaryExpression:...
656
+ @typing.overload
657
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
658
+
659
+ # Skipped Label due to it being static, abstract and generic.
660
+
661
+ Label : Label_MethodGroup
662
+ class Label_MethodGroup:
663
+ @typing.overload
664
+ def __call__(self) -> LabelTarget:...
665
+ @typing.overload
666
+ def __call__(self, name: str) -> LabelTarget:...
667
+ @typing.overload
668
+ def __call__(self, type: typing.Type[typing.Any]) -> LabelTarget:...
669
+ @typing.overload
670
+ def __call__(self, target: LabelTarget) -> LabelExpression:...
671
+ @typing.overload
672
+ def __call__(self, type: typing.Type[typing.Any], name: str) -> LabelTarget:...
673
+ @typing.overload
674
+ def __call__(self, target: LabelTarget, defaultValue: Expression) -> LabelExpression:...
675
+
676
+ # Skipped Lambda due to it being static, abstract and generic.
677
+
678
+ Lambda : Lambda_MethodGroup
679
+ class Lambda_MethodGroup:
680
+ def __getitem__(self, t:typing.Type[Lambda_1_T1]) -> Lambda_1[Lambda_1_T1]: ...
681
+
682
+ Lambda_1_T1 = typing.TypeVar('Lambda_1_T1')
683
+ class Lambda_1(typing.Generic[Lambda_1_T1]):
684
+ Lambda_1_TDelegate = Expression_0.Lambda_MethodGroup.Lambda_1_T1
685
+ @typing.overload
686
+ def __call__(self, body: Expression, parameters: Array_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
687
+ @typing.overload
688
+ def __call__(self, body: Expression, parameters: IEnumerable_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
689
+ @typing.overload
690
+ def __call__(self, body: Expression, tailCall: bool, parameters: Array_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
691
+ @typing.overload
692
+ def __call__(self, body: Expression, name: str, parameters: IEnumerable_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
693
+ @typing.overload
694
+ def __call__(self, body: Expression, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
695
+ @typing.overload
696
+ def __call__(self, body: Expression, name: str, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> Expression_1[Lambda_1_TDelegate]:...
697
+
698
+ @typing.overload
699
+ def __call__(self, body: Expression, parameters: Array_1[ParameterExpression]) -> LambdaExpression:...
700
+ @typing.overload
701
+ def __call__(self, body: Expression, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
702
+ @typing.overload
703
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, parameters: Array_1[ParameterExpression]) -> LambdaExpression:...
704
+ @typing.overload
705
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
706
+ @typing.overload
707
+ def __call__(self, body: Expression, tailCall: bool, parameters: Array_1[ParameterExpression]) -> LambdaExpression:...
708
+ @typing.overload
709
+ def __call__(self, body: Expression, name: str, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
710
+ @typing.overload
711
+ def __call__(self, body: Expression, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
712
+ @typing.overload
713
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, tailCall: bool, parameters: Array_1[ParameterExpression]) -> LambdaExpression:...
714
+ @typing.overload
715
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, name: str, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
716
+ @typing.overload
717
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
718
+ @typing.overload
719
+ def __call__(self, body: Expression, name: str, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
720
+ @typing.overload
721
+ def __call__(self, delegateType: typing.Type[typing.Any], body: Expression, name: str, tailCall: bool, parameters: IEnumerable_1[ParameterExpression]) -> LambdaExpression:...
722
+
723
+ # Skipped LeftShift due to it being static, abstract and generic.
724
+
725
+ LeftShift : LeftShift_MethodGroup
726
+ class LeftShift_MethodGroup:
727
+ @typing.overload
728
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
729
+ @typing.overload
730
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
731
+
732
+ # Skipped LeftShiftAssign due to it being static, abstract and generic.
733
+
734
+ LeftShiftAssign : LeftShiftAssign_MethodGroup
735
+ class LeftShiftAssign_MethodGroup:
736
+ @typing.overload
737
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
738
+ @typing.overload
739
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
740
+ @typing.overload
741
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
742
+
743
+ # Skipped LessThan due to it being static, abstract and generic.
744
+
745
+ LessThan : LessThan_MethodGroup
746
+ class LessThan_MethodGroup:
747
+ @typing.overload
748
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
749
+ @typing.overload
750
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
751
+
752
+ # Skipped LessThanOrEqual due to it being static, abstract and generic.
753
+
754
+ LessThanOrEqual : LessThanOrEqual_MethodGroup
755
+ class LessThanOrEqual_MethodGroup:
756
+ @typing.overload
757
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
758
+ @typing.overload
759
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
760
+
761
+ # Skipped ListBind due to it being static, abstract and generic.
762
+
763
+ ListBind : ListBind_MethodGroup
764
+ class ListBind_MethodGroup:
765
+ @typing.overload
766
+ def __call__(self, propertyAccessor: MethodInfo, initializers: Array_1[ElementInit]) -> MemberListBinding:...
767
+ @typing.overload
768
+ def __call__(self, propertyAccessor: MethodInfo, initializers: IEnumerable_1[ElementInit]) -> MemberListBinding:...
769
+ @typing.overload
770
+ def __call__(self, member: MemberInfo, initializers: Array_1[ElementInit]) -> MemberListBinding:...
771
+ @typing.overload
772
+ def __call__(self, member: MemberInfo, initializers: IEnumerable_1[ElementInit]) -> MemberListBinding:...
773
+
774
+ # Skipped ListInit due to it being static, abstract and generic.
775
+
776
+ ListInit : ListInit_MethodGroup
777
+ class ListInit_MethodGroup:
778
+ @typing.overload
779
+ def __call__(self, newExpression: NewExpression, initializers: Array_1[Expression]) -> ListInitExpression:...
780
+ @typing.overload
781
+ def __call__(self, newExpression: NewExpression, initializers: Array_1[ElementInit]) -> ListInitExpression:...
782
+ @typing.overload
783
+ def __call__(self, newExpression: NewExpression, initializers: IEnumerable_1[Expression]) -> ListInitExpression:...
784
+ @typing.overload
785
+ def __call__(self, newExpression: NewExpression, initializers: IEnumerable_1[ElementInit]) -> ListInitExpression:...
786
+ @typing.overload
787
+ def __call__(self, newExpression: NewExpression, addMethod: MethodInfo, initializers: Array_1[Expression]) -> ListInitExpression:...
788
+ @typing.overload
789
+ def __call__(self, newExpression: NewExpression, addMethod: MethodInfo, initializers: IEnumerable_1[Expression]) -> ListInitExpression:...
790
+
791
+ # Skipped Loop due to it being static, abstract and generic.
792
+
793
+ Loop : Loop_MethodGroup
794
+ class Loop_MethodGroup:
795
+ @typing.overload
796
+ def __call__(self, body: Expression) -> LoopExpression:...
797
+ @typing.overload
798
+ def __call__(self, body: Expression, break: LabelTarget) -> LoopExpression:...
799
+ @typing.overload
800
+ def __call__(self, body: Expression, break: LabelTarget, continue: LabelTarget) -> LoopExpression:...
801
+
802
+ # Skipped MakeBinary due to it being static, abstract and generic.
803
+
804
+ MakeBinary : MakeBinary_MethodGroup
805
+ class MakeBinary_MethodGroup:
806
+ @typing.overload
807
+ def __call__(self, binaryType: ExpressionType, left: Expression, right: Expression) -> BinaryExpression:...
808
+ @typing.overload
809
+ def __call__(self, binaryType: ExpressionType, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
810
+ @typing.overload
811
+ def __call__(self, binaryType: ExpressionType, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
812
+
813
+ # Skipped MakeDynamic due to it being static, abstract and generic.
814
+
815
+ MakeDynamic : MakeDynamic_MethodGroup
816
+ class MakeDynamic_MethodGroup:
817
+ @typing.overload
818
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arguments: Array_1[Expression]) -> DynamicExpression:...
819
+ @typing.overload
820
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arguments: IEnumerable_1[Expression]) -> DynamicExpression:...
821
+ @typing.overload
822
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression) -> DynamicExpression:...
823
+ @typing.overload
824
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression) -> DynamicExpression:...
825
+ @typing.overload
826
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression) -> DynamicExpression:...
827
+ @typing.overload
828
+ def __call__(self, delegateType: typing.Type[typing.Any], binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression) -> DynamicExpression:...
829
+
830
+ # Skipped MakeUnary due to it being static, abstract and generic.
831
+
832
+ MakeUnary : MakeUnary_MethodGroup
833
+ class MakeUnary_MethodGroup:
834
+ @typing.overload
835
+ def __call__(self, unaryType: ExpressionType, operand: Expression, type: typing.Type[typing.Any]) -> UnaryExpression:...
836
+ @typing.overload
837
+ def __call__(self, unaryType: ExpressionType, operand: Expression, type: typing.Type[typing.Any], method: MethodInfo) -> UnaryExpression:...
838
+
839
+ # Skipped MemberBind due to it being static, abstract and generic.
840
+
841
+ MemberBind : MemberBind_MethodGroup
842
+ class MemberBind_MethodGroup:
843
+ @typing.overload
844
+ def __call__(self, propertyAccessor: MethodInfo, bindings: Array_1[MemberBinding]) -> MemberMemberBinding:...
845
+ @typing.overload
846
+ def __call__(self, propertyAccessor: MethodInfo, bindings: IEnumerable_1[MemberBinding]) -> MemberMemberBinding:...
847
+ @typing.overload
848
+ def __call__(self, member: MemberInfo, bindings: Array_1[MemberBinding]) -> MemberMemberBinding:...
849
+ @typing.overload
850
+ def __call__(self, member: MemberInfo, bindings: IEnumerable_1[MemberBinding]) -> MemberMemberBinding:...
851
+
852
+ # Skipped MemberInit due to it being static, abstract and generic.
853
+
854
+ MemberInit : MemberInit_MethodGroup
855
+ class MemberInit_MethodGroup:
856
+ @typing.overload
857
+ def __call__(self, newExpression: NewExpression, bindings: Array_1[MemberBinding]) -> MemberInitExpression:...
858
+ @typing.overload
859
+ def __call__(self, newExpression: NewExpression, bindings: IEnumerable_1[MemberBinding]) -> MemberInitExpression:...
860
+
861
+ # Skipped Modulo due to it being static, abstract and generic.
862
+
863
+ Modulo : Modulo_MethodGroup
864
+ class Modulo_MethodGroup:
865
+ @typing.overload
866
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
867
+ @typing.overload
868
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
869
+
870
+ # Skipped ModuloAssign due to it being static, abstract and generic.
871
+
872
+ ModuloAssign : ModuloAssign_MethodGroup
873
+ class ModuloAssign_MethodGroup:
874
+ @typing.overload
875
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
876
+ @typing.overload
877
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
878
+ @typing.overload
879
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
880
+
881
+ # Skipped Multiply due to it being static, abstract and generic.
882
+
883
+ Multiply : Multiply_MethodGroup
884
+ class Multiply_MethodGroup:
885
+ @typing.overload
886
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
887
+ @typing.overload
888
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
889
+
890
+ # Skipped MultiplyAssign due to it being static, abstract and generic.
891
+
892
+ MultiplyAssign : MultiplyAssign_MethodGroup
893
+ class MultiplyAssign_MethodGroup:
894
+ @typing.overload
895
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
896
+ @typing.overload
897
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
898
+ @typing.overload
899
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
900
+
901
+ # Skipped MultiplyAssignChecked due to it being static, abstract and generic.
902
+
903
+ MultiplyAssignChecked : MultiplyAssignChecked_MethodGroup
904
+ class MultiplyAssignChecked_MethodGroup:
905
+ @typing.overload
906
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
907
+ @typing.overload
908
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
909
+ @typing.overload
910
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
911
+
912
+ # Skipped MultiplyChecked due to it being static, abstract and generic.
913
+
914
+ MultiplyChecked : MultiplyChecked_MethodGroup
915
+ class MultiplyChecked_MethodGroup:
916
+ @typing.overload
917
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
918
+ @typing.overload
919
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
920
+
921
+ # Skipped Negate due to it being static, abstract and generic.
922
+
923
+ Negate : Negate_MethodGroup
924
+ class Negate_MethodGroup:
925
+ @typing.overload
926
+ def __call__(self, expression: Expression) -> UnaryExpression:...
927
+ @typing.overload
928
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
929
+
930
+ # Skipped NegateChecked due to it being static, abstract and generic.
931
+
932
+ NegateChecked : NegateChecked_MethodGroup
933
+ class NegateChecked_MethodGroup:
934
+ @typing.overload
935
+ def __call__(self, expression: Expression) -> UnaryExpression:...
936
+ @typing.overload
937
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
938
+
939
+ # Skipped New due to it being static, abstract and generic.
940
+
941
+ New : New_MethodGroup
942
+ class New_MethodGroup:
943
+ @typing.overload
944
+ def __call__(self, constructor: ConstructorInfo) -> NewExpression:...
945
+ @typing.overload
946
+ def __call__(self, type: typing.Type[typing.Any]) -> NewExpression:...
947
+ @typing.overload
948
+ def __call__(self, constructor: ConstructorInfo, arguments: Array_1[Expression]) -> NewExpression:...
949
+ @typing.overload
950
+ def __call__(self, constructor: ConstructorInfo, arguments: IEnumerable_1[Expression]) -> NewExpression:...
951
+ @typing.overload
952
+ def __call__(self, constructor: ConstructorInfo, arguments: IEnumerable_1[Expression], members: Array_1[MemberInfo]) -> NewExpression:...
953
+ @typing.overload
954
+ def __call__(self, constructor: ConstructorInfo, arguments: IEnumerable_1[Expression], members: IEnumerable_1[MemberInfo]) -> NewExpression:...
955
+
956
+ # Skipped NewArrayBounds due to it being static, abstract and generic.
957
+
958
+ NewArrayBounds : NewArrayBounds_MethodGroup
959
+ class NewArrayBounds_MethodGroup:
960
+ @typing.overload
961
+ def __call__(self, type: typing.Type[typing.Any], bounds: Array_1[Expression]) -> NewArrayExpression:...
962
+ @typing.overload
963
+ def __call__(self, type: typing.Type[typing.Any], bounds: IEnumerable_1[Expression]) -> NewArrayExpression:...
964
+
965
+ # Skipped NewArrayInit due to it being static, abstract and generic.
966
+
967
+ NewArrayInit : NewArrayInit_MethodGroup
968
+ class NewArrayInit_MethodGroup:
969
+ @typing.overload
970
+ def __call__(self, type: typing.Type[typing.Any], initializers: Array_1[Expression]) -> NewArrayExpression:...
971
+ @typing.overload
972
+ def __call__(self, type: typing.Type[typing.Any], initializers: IEnumerable_1[Expression]) -> NewArrayExpression:...
973
+
974
+ # Skipped Not due to it being static, abstract and generic.
975
+
976
+ Not : Not_MethodGroup
977
+ class Not_MethodGroup:
978
+ @typing.overload
979
+ def __call__(self, expression: Expression) -> UnaryExpression:...
980
+ @typing.overload
981
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
982
+
983
+ # Skipped NotEqual due to it being static, abstract and generic.
984
+
985
+ NotEqual : NotEqual_MethodGroup
986
+ class NotEqual_MethodGroup:
987
+ @typing.overload
988
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
989
+ @typing.overload
990
+ def __call__(self, left: Expression, right: Expression, liftToNull: bool, method: MethodInfo) -> BinaryExpression:...
991
+
992
+ # Skipped OnesComplement due to it being static, abstract and generic.
993
+
994
+ OnesComplement : OnesComplement_MethodGroup
995
+ class OnesComplement_MethodGroup:
996
+ @typing.overload
997
+ def __call__(self, expression: Expression) -> UnaryExpression:...
998
+ @typing.overload
999
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1000
+
1001
+ # Skipped Or due to it being static, abstract and generic.
1002
+
1003
+ Or : Or_MethodGroup
1004
+ class Or_MethodGroup:
1005
+ @typing.overload
1006
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1007
+ @typing.overload
1008
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1009
+
1010
+ # Skipped OrAssign due to it being static, abstract and generic.
1011
+
1012
+ OrAssign : OrAssign_MethodGroup
1013
+ class OrAssign_MethodGroup:
1014
+ @typing.overload
1015
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1016
+ @typing.overload
1017
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1018
+ @typing.overload
1019
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
1020
+
1021
+ # Skipped OrElse due to it being static, abstract and generic.
1022
+
1023
+ OrElse : OrElse_MethodGroup
1024
+ class OrElse_MethodGroup:
1025
+ @typing.overload
1026
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1027
+ @typing.overload
1028
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1029
+
1030
+ # Skipped Parameter due to it being static, abstract and generic.
1031
+
1032
+ Parameter : Parameter_MethodGroup
1033
+ class Parameter_MethodGroup:
1034
+ @typing.overload
1035
+ def __call__(self, type: typing.Type[typing.Any]) -> ParameterExpression:...
1036
+ @typing.overload
1037
+ def __call__(self, type: typing.Type[typing.Any], name: str) -> ParameterExpression:...
1038
+
1039
+ # Skipped PostDecrementAssign due to it being static, abstract and generic.
1040
+
1041
+ PostDecrementAssign : PostDecrementAssign_MethodGroup
1042
+ class PostDecrementAssign_MethodGroup:
1043
+ @typing.overload
1044
+ def __call__(self, expression: Expression) -> UnaryExpression:...
1045
+ @typing.overload
1046
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1047
+
1048
+ # Skipped PostIncrementAssign due to it being static, abstract and generic.
1049
+
1050
+ PostIncrementAssign : PostIncrementAssign_MethodGroup
1051
+ class PostIncrementAssign_MethodGroup:
1052
+ @typing.overload
1053
+ def __call__(self, expression: Expression) -> UnaryExpression:...
1054
+ @typing.overload
1055
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1056
+
1057
+ # Skipped Power due to it being static, abstract and generic.
1058
+
1059
+ Power : Power_MethodGroup
1060
+ class Power_MethodGroup:
1061
+ @typing.overload
1062
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1063
+ @typing.overload
1064
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1065
+
1066
+ # Skipped PowerAssign due to it being static, abstract and generic.
1067
+
1068
+ PowerAssign : PowerAssign_MethodGroup
1069
+ class PowerAssign_MethodGroup:
1070
+ @typing.overload
1071
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1072
+ @typing.overload
1073
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1074
+ @typing.overload
1075
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
1076
+
1077
+ # Skipped PreDecrementAssign due to it being static, abstract and generic.
1078
+
1079
+ PreDecrementAssign : PreDecrementAssign_MethodGroup
1080
+ class PreDecrementAssign_MethodGroup:
1081
+ @typing.overload
1082
+ def __call__(self, expression: Expression) -> UnaryExpression:...
1083
+ @typing.overload
1084
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1085
+
1086
+ # Skipped PreIncrementAssign due to it being static, abstract and generic.
1087
+
1088
+ PreIncrementAssign : PreIncrementAssign_MethodGroup
1089
+ class PreIncrementAssign_MethodGroup:
1090
+ @typing.overload
1091
+ def __call__(self, expression: Expression) -> UnaryExpression:...
1092
+ @typing.overload
1093
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1094
+
1095
+ # Skipped Property due to it being static, abstract and generic.
1096
+
1097
+ Property : Property_MethodGroup
1098
+ class Property_MethodGroup:
1099
+ @typing.overload
1100
+ def __call__(self, expression: Expression, propertyAccessor: MethodInfo) -> MemberExpression:...
1101
+ @typing.overload
1102
+ def __call__(self, expression: Expression, property: PropertyInfo) -> MemberExpression:...
1103
+ @typing.overload
1104
+ def __call__(self, expression: Expression, propertyName: str) -> MemberExpression:...
1105
+ @typing.overload
1106
+ def __call__(self, instance: Expression, indexer: PropertyInfo, arguments: Array_1[Expression]) -> IndexExpression:...
1107
+ @typing.overload
1108
+ def __call__(self, instance: Expression, propertyName: str, arguments: Array_1[Expression]) -> IndexExpression:...
1109
+ @typing.overload
1110
+ def __call__(self, expression: Expression, type: typing.Type[typing.Any], propertyName: str) -> MemberExpression:...
1111
+ @typing.overload
1112
+ def __call__(self, instance: Expression, indexer: PropertyInfo, arguments: IEnumerable_1[Expression]) -> IndexExpression:...
1113
+
1114
+ # Skipped Rethrow due to it being static, abstract and generic.
1115
+
1116
+ Rethrow : Rethrow_MethodGroup
1117
+ class Rethrow_MethodGroup:
1118
+ @typing.overload
1119
+ def __call__(self) -> UnaryExpression:...
1120
+ @typing.overload
1121
+ def __call__(self, type: typing.Type[typing.Any]) -> UnaryExpression:...
1122
+
1123
+ # Skipped Return due to it being static, abstract and generic.
1124
+
1125
+ Return : Return_MethodGroup
1126
+ class Return_MethodGroup:
1127
+ @typing.overload
1128
+ def __call__(self, target: LabelTarget) -> GotoExpression:...
1129
+ @typing.overload
1130
+ def __call__(self, target: LabelTarget, type: typing.Type[typing.Any]) -> GotoExpression:...
1131
+ @typing.overload
1132
+ def __call__(self, target: LabelTarget, value: Expression) -> GotoExpression:...
1133
+ @typing.overload
1134
+ def __call__(self, target: LabelTarget, value: Expression, type: typing.Type[typing.Any]) -> GotoExpression:...
1135
+
1136
+ # Skipped RightShift due to it being static, abstract and generic.
1137
+
1138
+ RightShift : RightShift_MethodGroup
1139
+ class RightShift_MethodGroup:
1140
+ @typing.overload
1141
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1142
+ @typing.overload
1143
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1144
+
1145
+ # Skipped RightShiftAssign due to it being static, abstract and generic.
1146
+
1147
+ RightShiftAssign : RightShiftAssign_MethodGroup
1148
+ class RightShiftAssign_MethodGroup:
1149
+ @typing.overload
1150
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1151
+ @typing.overload
1152
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1153
+ @typing.overload
1154
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
1155
+
1156
+ # Skipped RuntimeVariables due to it being static, abstract and generic.
1157
+
1158
+ RuntimeVariables : RuntimeVariables_MethodGroup
1159
+ class RuntimeVariables_MethodGroup:
1160
+ @typing.overload
1161
+ def __call__(self, variables: Array_1[ParameterExpression]) -> RuntimeVariablesExpression:...
1162
+ @typing.overload
1163
+ def __call__(self, variables: IEnumerable_1[ParameterExpression]) -> RuntimeVariablesExpression:...
1164
+
1165
+ # Skipped Subtract due to it being static, abstract and generic.
1166
+
1167
+ Subtract : Subtract_MethodGroup
1168
+ class Subtract_MethodGroup:
1169
+ @typing.overload
1170
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1171
+ @typing.overload
1172
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1173
+
1174
+ # Skipped SubtractAssign due to it being static, abstract and generic.
1175
+
1176
+ SubtractAssign : SubtractAssign_MethodGroup
1177
+ class SubtractAssign_MethodGroup:
1178
+ @typing.overload
1179
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1180
+ @typing.overload
1181
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1182
+ @typing.overload
1183
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
1184
+
1185
+ # Skipped SubtractAssignChecked due to it being static, abstract and generic.
1186
+
1187
+ SubtractAssignChecked : SubtractAssignChecked_MethodGroup
1188
+ class SubtractAssignChecked_MethodGroup:
1189
+ @typing.overload
1190
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1191
+ @typing.overload
1192
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1193
+ @typing.overload
1194
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression) -> BinaryExpression:...
1195
+
1196
+ # Skipped SubtractChecked due to it being static, abstract and generic.
1197
+
1198
+ SubtractChecked : SubtractChecked_MethodGroup
1199
+ class SubtractChecked_MethodGroup:
1200
+ @typing.overload
1201
+ def __call__(self, left: Expression, right: Expression) -> BinaryExpression:...
1202
+ @typing.overload
1203
+ def __call__(self, left: Expression, right: Expression, method: MethodInfo) -> BinaryExpression:...
1204
+
1205
+ # Skipped Switch due to it being static, abstract and generic.
1206
+
1207
+ Switch : Switch_MethodGroup
1208
+ class Switch_MethodGroup:
1209
+ @typing.overload
1210
+ def __call__(self, switchValue: Expression, cases: Array_1[SwitchCase]) -> SwitchExpression:...
1211
+ @typing.overload
1212
+ def __call__(self, switchValue: Expression, defaultBody: Expression, cases: Array_1[SwitchCase]) -> SwitchExpression:...
1213
+ @typing.overload
1214
+ def __call__(self, switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: Array_1[SwitchCase]) -> SwitchExpression:...
1215
+ @typing.overload
1216
+ def __call__(self, switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: IEnumerable_1[SwitchCase]) -> SwitchExpression:...
1217
+ @typing.overload
1218
+ def __call__(self, type: typing.Type[typing.Any], switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: Array_1[SwitchCase]) -> SwitchExpression:...
1219
+ @typing.overload
1220
+ def __call__(self, type: typing.Type[typing.Any], switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: IEnumerable_1[SwitchCase]) -> SwitchExpression:...
1221
+
1222
+ # Skipped SwitchCase due to it being static, abstract and generic.
1223
+
1224
+ SwitchCase : SwitchCase_MethodGroup
1225
+ class SwitchCase_MethodGroup:
1226
+ @typing.overload
1227
+ def __call__(self, body: Expression, testValues: Array_1[Expression]) -> SwitchCase:...
1228
+ @typing.overload
1229
+ def __call__(self, body: Expression, testValues: IEnumerable_1[Expression]) -> SwitchCase:...
1230
+
1231
+ # Skipped SymbolDocument due to it being static, abstract and generic.
1232
+
1233
+ SymbolDocument : SymbolDocument_MethodGroup
1234
+ class SymbolDocument_MethodGroup:
1235
+ @typing.overload
1236
+ def __call__(self, fileName: str) -> SymbolDocumentInfo:...
1237
+ @typing.overload
1238
+ def __call__(self, fileName: str, language: Guid) -> SymbolDocumentInfo:...
1239
+ @typing.overload
1240
+ def __call__(self, fileName: str, language: Guid, languageVendor: Guid) -> SymbolDocumentInfo:...
1241
+ @typing.overload
1242
+ def __call__(self, fileName: str, language: Guid, languageVendor: Guid, documentType: Guid) -> SymbolDocumentInfo:...
1243
+
1244
+ # Skipped Throw due to it being static, abstract and generic.
1245
+
1246
+ Throw : Throw_MethodGroup
1247
+ class Throw_MethodGroup:
1248
+ @typing.overload
1249
+ def __call__(self, value: Expression) -> UnaryExpression:...
1250
+ @typing.overload
1251
+ def __call__(self, value: Expression, type: typing.Type[typing.Any]) -> UnaryExpression:...
1252
+
1253
+ # Skipped UnaryPlus due to it being static, abstract and generic.
1254
+
1255
+ UnaryPlus : UnaryPlus_MethodGroup
1256
+ class UnaryPlus_MethodGroup:
1257
+ @typing.overload
1258
+ def __call__(self, expression: Expression) -> UnaryExpression:...
1259
+ @typing.overload
1260
+ def __call__(self, expression: Expression, method: MethodInfo) -> UnaryExpression:...
1261
+
1262
+ # Skipped Variable due to it being static, abstract and generic.
1263
+
1264
+ Variable : Variable_MethodGroup
1265
+ class Variable_MethodGroup:
1266
+ @typing.overload
1267
+ def __call__(self, type: typing.Type[typing.Any]) -> ParameterExpression:...
1268
+ @typing.overload
1269
+ def __call__(self, type: typing.Type[typing.Any], name: str) -> ParameterExpression:...
1270
+
1271
+
1272
+
1273
+ Expression_1_TDelegate = typing.TypeVar('Expression_1_TDelegate')
1274
+ class Expression_1(typing.Generic[Expression_1_TDelegate], LambdaExpression):
1275
+ @property
1276
+ def Body(self) -> Expression: ...
1277
+ @property
1278
+ def CanReduce(self) -> bool: ...
1279
+ @property
1280
+ def Name(self) -> str: ...
1281
+ @property
1282
+ def NodeType(self) -> ExpressionType: ...
1283
+ @property
1284
+ def Parameters(self) -> ReadOnlyCollection_1[ParameterExpression]: ...
1285
+ @property
1286
+ def ReturnType(self) -> typing.Type[typing.Any]: ...
1287
+ @property
1288
+ def TailCall(self) -> bool: ...
1289
+ @property
1290
+ def Type(self) -> typing.Type[typing.Any]: ...
1291
+ def Update(self, body: Expression, parameters: IEnumerable_1[ParameterExpression]) -> Expression_1[Expression_1_TDelegate]: ...
1292
+ # Skipped Compile due to it being static, abstract and generic.
1293
+
1294
+ Compile : Compile_MethodGroup[Expression_1_TDelegate]
1295
+ Compile_MethodGroup_Expression_1_TDelegate = typing.TypeVar('Compile_MethodGroup_Expression_1_TDelegate')
1296
+ class Compile_MethodGroup(typing.Generic[Compile_MethodGroup_Expression_1_TDelegate]):
1297
+ Compile_MethodGroup_Expression_1_TDelegate = Expression_1.Compile_MethodGroup_Expression_1_TDelegate
1298
+ @typing.overload
1299
+ def __call__(self) -> Compile_MethodGroup_Expression_1_TDelegate:...
1300
+ @typing.overload
1301
+ def __call__(self, preferInterpretation: bool) -> Compile_MethodGroup_Expression_1_TDelegate:...
1302
+ @typing.overload
1303
+ def __call__(self, debugInfoGenerator: DebugInfoGenerator) -> Compile_MethodGroup_Expression_1_TDelegate:...
1304
+
1305
+
1306
+
1307
+ class ExpressionType(typing.SupportsInt):
1308
+ @typing.overload
1309
+ def __init__(self, value : int) -> None: ...
1310
+ @typing.overload
1311
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1312
+ def __int__(self) -> int: ...
1313
+
1314
+ # Values:
1315
+ Add : ExpressionType # 0
1316
+ AddChecked : ExpressionType # 1
1317
+ And : ExpressionType # 2
1318
+ AndAlso : ExpressionType # 3
1319
+ ArrayLength : ExpressionType # 4
1320
+ ArrayIndex : ExpressionType # 5
1321
+ Call : ExpressionType # 6
1322
+ Coalesce : ExpressionType # 7
1323
+ Conditional : ExpressionType # 8
1324
+ Constant : ExpressionType # 9
1325
+ Convert : ExpressionType # 10
1326
+ ConvertChecked : ExpressionType # 11
1327
+ Divide : ExpressionType # 12
1328
+ Equal : ExpressionType # 13
1329
+ ExclusiveOr : ExpressionType # 14
1330
+ GreaterThan : ExpressionType # 15
1331
+ GreaterThanOrEqual : ExpressionType # 16
1332
+ Invoke : ExpressionType # 17
1333
+ Lambda : ExpressionType # 18
1334
+ LeftShift : ExpressionType # 19
1335
+ LessThan : ExpressionType # 20
1336
+ LessThanOrEqual : ExpressionType # 21
1337
+ ListInit : ExpressionType # 22
1338
+ MemberAccess : ExpressionType # 23
1339
+ MemberInit : ExpressionType # 24
1340
+ Modulo : ExpressionType # 25
1341
+ Multiply : ExpressionType # 26
1342
+ MultiplyChecked : ExpressionType # 27
1343
+ Negate : ExpressionType # 28
1344
+ UnaryPlus : ExpressionType # 29
1345
+ NegateChecked : ExpressionType # 30
1346
+ New : ExpressionType # 31
1347
+ NewArrayInit : ExpressionType # 32
1348
+ NewArrayBounds : ExpressionType # 33
1349
+ Not : ExpressionType # 34
1350
+ NotEqual : ExpressionType # 35
1351
+ Or : ExpressionType # 36
1352
+ OrElse : ExpressionType # 37
1353
+ Parameter : ExpressionType # 38
1354
+ Power : ExpressionType # 39
1355
+ Quote : ExpressionType # 40
1356
+ RightShift : ExpressionType # 41
1357
+ Subtract : ExpressionType # 42
1358
+ SubtractChecked : ExpressionType # 43
1359
+ TypeAs : ExpressionType # 44
1360
+ TypeIs : ExpressionType # 45
1361
+ Assign : ExpressionType # 46
1362
+ Block : ExpressionType # 47
1363
+ DebugInfo : ExpressionType # 48
1364
+ Decrement : ExpressionType # 49
1365
+ Dynamic : ExpressionType # 50
1366
+ Default : ExpressionType # 51
1367
+ Extension : ExpressionType # 52
1368
+ Goto : ExpressionType # 53
1369
+ Increment : ExpressionType # 54
1370
+ Index : ExpressionType # 55
1371
+ Label : ExpressionType # 56
1372
+ RuntimeVariables : ExpressionType # 57
1373
+ Loop : ExpressionType # 58
1374
+ Switch : ExpressionType # 59
1375
+ Throw : ExpressionType # 60
1376
+ Try : ExpressionType # 61
1377
+ Unbox : ExpressionType # 62
1378
+ AddAssign : ExpressionType # 63
1379
+ AndAssign : ExpressionType # 64
1380
+ DivideAssign : ExpressionType # 65
1381
+ ExclusiveOrAssign : ExpressionType # 66
1382
+ LeftShiftAssign : ExpressionType # 67
1383
+ ModuloAssign : ExpressionType # 68
1384
+ MultiplyAssign : ExpressionType # 69
1385
+ OrAssign : ExpressionType # 70
1386
+ PowerAssign : ExpressionType # 71
1387
+ RightShiftAssign : ExpressionType # 72
1388
+ SubtractAssign : ExpressionType # 73
1389
+ AddAssignChecked : ExpressionType # 74
1390
+ MultiplyAssignChecked : ExpressionType # 75
1391
+ SubtractAssignChecked : ExpressionType # 76
1392
+ PreIncrementAssign : ExpressionType # 77
1393
+ PreDecrementAssign : ExpressionType # 78
1394
+ PostIncrementAssign : ExpressionType # 79
1395
+ PostDecrementAssign : ExpressionType # 80
1396
+ TypeEqual : ExpressionType # 81
1397
+ OnesComplement : ExpressionType # 82
1398
+ IsTrue : ExpressionType # 83
1399
+ IsFalse : ExpressionType # 84
1400
+
1401
+
1402
+ class GotoExpression(Expression_0):
1403
+ @property
1404
+ def CanReduce(self) -> bool: ...
1405
+ @property
1406
+ def Kind(self) -> GotoExpressionKind: ...
1407
+ @property
1408
+ def NodeType(self) -> ExpressionType: ...
1409
+ @property
1410
+ def Target(self) -> LabelTarget: ...
1411
+ @property
1412
+ def Type(self) -> typing.Type[typing.Any]: ...
1413
+ @property
1414
+ def Value(self) -> Expression: ...
1415
+ def Update(self, target: LabelTarget, value: Expression) -> GotoExpression: ...
1416
+
1417
+
1418
+ class GotoExpressionKind(typing.SupportsInt):
1419
+ @typing.overload
1420
+ def __init__(self, value : int) -> None: ...
1421
+ @typing.overload
1422
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1423
+ def __int__(self) -> int: ...
1424
+
1425
+ # Values:
1426
+ Goto : GotoExpressionKind # 0
1427
+ Return : GotoExpressionKind # 1
1428
+ Break : GotoExpressionKind # 2
1429
+ Continue : GotoExpressionKind # 3
1430
+
1431
+
1432
+ class IArgumentProvider(typing.Protocol):
1433
+ @property
1434
+ def ArgumentCount(self) -> int: ...
1435
+ @abc.abstractmethod
1436
+ def GetArgument(self, index: int) -> Expression: ...
1437
+
1438
+
1439
+ class IDynamicExpression(IArgumentProvider, typing.Protocol):
1440
+ @property
1441
+ def DelegateType(self) -> typing.Type[typing.Any]: ...
1442
+ @abc.abstractmethod
1443
+ def CreateCallSite(self) -> typing.Any: ...
1444
+ @abc.abstractmethod
1445
+ def Rewrite(self, args: Array_1[Expression]) -> Expression: ...
1446
+
1447
+
1448
+ class IndexExpression(Expression_0, IArgumentProvider):
1449
+ @property
1450
+ def ArgumentCount(self) -> int: ...
1451
+ @property
1452
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
1453
+ @property
1454
+ def CanReduce(self) -> bool: ...
1455
+ @property
1456
+ def Indexer(self) -> PropertyInfo: ...
1457
+ @property
1458
+ def NodeType(self) -> ExpressionType: ...
1459
+ @property
1460
+ def Object(self) -> Expression: ...
1461
+ @property
1462
+ def Type(self) -> typing.Type[typing.Any]: ...
1463
+ def GetArgument(self, index: int) -> Expression: ...
1464
+ def Update(self, object: Expression, arguments: IEnumerable_1[Expression]) -> IndexExpression: ...
1465
+
1466
+
1467
+ class InvocationExpression(Expression_0, IArgumentProvider):
1468
+ @property
1469
+ def ArgumentCount(self) -> int: ...
1470
+ @property
1471
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
1472
+ @property
1473
+ def CanReduce(self) -> bool: ...
1474
+ @property
1475
+ def Expression(self) -> Expression: ...
1476
+ @property
1477
+ def NodeType(self) -> ExpressionType: ...
1478
+ @property
1479
+ def Type(self) -> typing.Type[typing.Any]: ...
1480
+ def GetArgument(self, index: int) -> Expression: ...
1481
+ def Update(self, expression: Expression, arguments: IEnumerable_1[Expression]) -> InvocationExpression: ...
1482
+
1483
+
1484
+ class LabelExpression(Expression_0):
1485
+ @property
1486
+ def CanReduce(self) -> bool: ...
1487
+ @property
1488
+ def DefaultValue(self) -> Expression: ...
1489
+ @property
1490
+ def NodeType(self) -> ExpressionType: ...
1491
+ @property
1492
+ def Target(self) -> LabelTarget: ...
1493
+ @property
1494
+ def Type(self) -> typing.Type[typing.Any]: ...
1495
+ def Update(self, target: LabelTarget, defaultValue: Expression) -> LabelExpression: ...
1496
+
1497
+
1498
+ class LabelTarget:
1499
+ @property
1500
+ def Name(self) -> str: ...
1501
+ @property
1502
+ def Type(self) -> typing.Type[typing.Any]: ...
1503
+ def ToString(self) -> str: ...
1504
+
1505
+
1506
+ class LambdaExpression(Expression_0):
1507
+ @property
1508
+ def Body(self) -> Expression: ...
1509
+ @classmethod
1510
+ @property
1511
+ def CanCompileToIL(cls) -> bool: ...
1512
+ @classmethod
1513
+ @property
1514
+ def CanInterpret(cls) -> bool: ...
1515
+ @property
1516
+ def CanReduce(self) -> bool: ...
1517
+ @property
1518
+ def Name(self) -> str: ...
1519
+ @property
1520
+ def NodeType(self) -> ExpressionType: ...
1521
+ @property
1522
+ def Parameters(self) -> ReadOnlyCollection_1[ParameterExpression]: ...
1523
+ @property
1524
+ def ReturnType(self) -> typing.Type[typing.Any]: ...
1525
+ @property
1526
+ def TailCall(self) -> bool: ...
1527
+ @property
1528
+ def Type(self) -> typing.Type[typing.Any]: ...
1529
+ # Skipped Compile due to it being static, abstract and generic.
1530
+
1531
+ Compile : Compile_MethodGroup
1532
+ class Compile_MethodGroup:
1533
+ @typing.overload
1534
+ def __call__(self) -> Delegate:...
1535
+ @typing.overload
1536
+ def __call__(self, preferInterpretation: bool) -> Delegate:...
1537
+ @typing.overload
1538
+ def __call__(self, debugInfoGenerator: DebugInfoGenerator) -> Delegate:...
1539
+
1540
+
1541
+
1542
+ class ListInitExpression(Expression_0):
1543
+ @property
1544
+ def CanReduce(self) -> bool: ...
1545
+ @property
1546
+ def Initializers(self) -> ReadOnlyCollection_1[ElementInit]: ...
1547
+ @property
1548
+ def NewExpression(self) -> NewExpression: ...
1549
+ @property
1550
+ def NodeType(self) -> ExpressionType: ...
1551
+ @property
1552
+ def Type(self) -> typing.Type[typing.Any]: ...
1553
+ def Reduce(self) -> Expression: ...
1554
+ def Update(self, newExpression: NewExpression, initializers: IEnumerable_1[ElementInit]) -> ListInitExpression: ...
1555
+
1556
+
1557
+ class LoopExpression(Expression_0):
1558
+ @property
1559
+ def Body(self) -> Expression: ...
1560
+ @property
1561
+ def BreakLabel(self) -> LabelTarget: ...
1562
+ @property
1563
+ def CanReduce(self) -> bool: ...
1564
+ @property
1565
+ def ContinueLabel(self) -> LabelTarget: ...
1566
+ @property
1567
+ def NodeType(self) -> ExpressionType: ...
1568
+ @property
1569
+ def Type(self) -> typing.Type[typing.Any]: ...
1570
+ def Update(self, breakLabel: LabelTarget, continueLabel: LabelTarget, body: Expression) -> LoopExpression: ...
1571
+
1572
+
1573
+ class MemberAssignment(MemberBinding):
1574
+ @property
1575
+ def BindingType(self) -> MemberBindingType: ...
1576
+ @property
1577
+ def Expression(self) -> Expression: ...
1578
+ @property
1579
+ def Member(self) -> MemberInfo: ...
1580
+ def Update(self, expression: Expression) -> MemberAssignment: ...
1581
+
1582
+
1583
+ class MemberBinding(abc.ABC):
1584
+ @property
1585
+ def BindingType(self) -> MemberBindingType: ...
1586
+ @property
1587
+ def Member(self) -> MemberInfo: ...
1588
+ def ToString(self) -> str: ...
1589
+
1590
+
1591
+ class MemberBindingType(typing.SupportsInt):
1592
+ @typing.overload
1593
+ def __init__(self, value : int) -> None: ...
1594
+ @typing.overload
1595
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1596
+ def __int__(self) -> int: ...
1597
+
1598
+ # Values:
1599
+ Assignment : MemberBindingType # 0
1600
+ MemberBinding : MemberBindingType # 1
1601
+ ListBinding : MemberBindingType # 2
1602
+
1603
+
1604
+ class MemberExpression(Expression_0):
1605
+ @property
1606
+ def CanReduce(self) -> bool: ...
1607
+ @property
1608
+ def Expression(self) -> Expression: ...
1609
+ @property
1610
+ def Member(self) -> MemberInfo: ...
1611
+ @property
1612
+ def NodeType(self) -> ExpressionType: ...
1613
+ @property
1614
+ def Type(self) -> typing.Type[typing.Any]: ...
1615
+ def Update(self, expression: Expression) -> MemberExpression: ...
1616
+
1617
+
1618
+ class MemberInitExpression(Expression_0):
1619
+ @property
1620
+ def Bindings(self) -> ReadOnlyCollection_1[MemberBinding]: ...
1621
+ @property
1622
+ def CanReduce(self) -> bool: ...
1623
+ @property
1624
+ def NewExpression(self) -> NewExpression: ...
1625
+ @property
1626
+ def NodeType(self) -> ExpressionType: ...
1627
+ @property
1628
+ def Type(self) -> typing.Type[typing.Any]: ...
1629
+ def Reduce(self) -> Expression: ...
1630
+ def Update(self, newExpression: NewExpression, bindings: IEnumerable_1[MemberBinding]) -> MemberInitExpression: ...
1631
+
1632
+
1633
+ class MemberListBinding(MemberBinding):
1634
+ @property
1635
+ def BindingType(self) -> MemberBindingType: ...
1636
+ @property
1637
+ def Initializers(self) -> ReadOnlyCollection_1[ElementInit]: ...
1638
+ @property
1639
+ def Member(self) -> MemberInfo: ...
1640
+ def Update(self, initializers: IEnumerable_1[ElementInit]) -> MemberListBinding: ...
1641
+
1642
+
1643
+ class MemberMemberBinding(MemberBinding):
1644
+ @property
1645
+ def Bindings(self) -> ReadOnlyCollection_1[MemberBinding]: ...
1646
+ @property
1647
+ def BindingType(self) -> MemberBindingType: ...
1648
+ @property
1649
+ def Member(self) -> MemberInfo: ...
1650
+ def Update(self, bindings: IEnumerable_1[MemberBinding]) -> MemberMemberBinding: ...
1651
+
1652
+
1653
+ class MethodCallExpression(Expression_0, IArgumentProvider):
1654
+ @property
1655
+ def ArgumentCount(self) -> int: ...
1656
+ @property
1657
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
1658
+ @property
1659
+ def CanReduce(self) -> bool: ...
1660
+ @property
1661
+ def Method(self) -> MethodInfo: ...
1662
+ @property
1663
+ def NodeType(self) -> ExpressionType: ...
1664
+ @property
1665
+ def Object(self) -> Expression: ...
1666
+ @property
1667
+ def Type(self) -> typing.Type[typing.Any]: ...
1668
+ def GetArgument(self, index: int) -> Expression: ...
1669
+ def Update(self, object: Expression, arguments: IEnumerable_1[Expression]) -> MethodCallExpression: ...
1670
+
1671
+
1672
+ class NewArrayExpression(Expression_0):
1673
+ @property
1674
+ def CanReduce(self) -> bool: ...
1675
+ @property
1676
+ def Expressions(self) -> ReadOnlyCollection_1[Expression]: ...
1677
+ @property
1678
+ def NodeType(self) -> ExpressionType: ...
1679
+ @property
1680
+ def Type(self) -> typing.Type[typing.Any]: ...
1681
+ def Update(self, expressions: IEnumerable_1[Expression]) -> NewArrayExpression: ...
1682
+
1683
+
1684
+ class NewExpression(Expression_0, IArgumentProvider):
1685
+ @property
1686
+ def ArgumentCount(self) -> int: ...
1687
+ @property
1688
+ def Arguments(self) -> ReadOnlyCollection_1[Expression]: ...
1689
+ @property
1690
+ def CanReduce(self) -> bool: ...
1691
+ @property
1692
+ def Constructor(self) -> ConstructorInfo: ...
1693
+ @property
1694
+ def Members(self) -> ReadOnlyCollection_1[MemberInfo]: ...
1695
+ @property
1696
+ def NodeType(self) -> ExpressionType: ...
1697
+ @property
1698
+ def Type(self) -> typing.Type[typing.Any]: ...
1699
+ def GetArgument(self, index: int) -> Expression: ...
1700
+ def Update(self, arguments: IEnumerable_1[Expression]) -> NewExpression: ...
1701
+
1702
+
1703
+ class ParameterExpression(Expression_0):
1704
+ @property
1705
+ def CanReduce(self) -> bool: ...
1706
+ @property
1707
+ def IsByRef(self) -> bool: ...
1708
+ @property
1709
+ def Name(self) -> str: ...
1710
+ @property
1711
+ def NodeType(self) -> ExpressionType: ...
1712
+ @property
1713
+ def Type(self) -> typing.Type[typing.Any]: ...
1714
+
1715
+
1716
+ class RuntimeVariablesExpression(Expression_0):
1717
+ @property
1718
+ def CanReduce(self) -> bool: ...
1719
+ @property
1720
+ def NodeType(self) -> ExpressionType: ...
1721
+ @property
1722
+ def Type(self) -> typing.Type[typing.Any]: ...
1723
+ @property
1724
+ def Variables(self) -> ReadOnlyCollection_1[ParameterExpression]: ...
1725
+ def Update(self, variables: IEnumerable_1[ParameterExpression]) -> RuntimeVariablesExpression: ...
1726
+
1727
+
1728
+ class SwitchCase:
1729
+ @property
1730
+ def Body(self) -> Expression: ...
1731
+ @property
1732
+ def TestValues(self) -> ReadOnlyCollection_1[Expression]: ...
1733
+ def ToString(self) -> str: ...
1734
+ def Update(self, testValues: IEnumerable_1[Expression], body: Expression) -> SwitchCase: ...
1735
+
1736
+
1737
+ class SwitchExpression(Expression_0):
1738
+ @property
1739
+ def CanReduce(self) -> bool: ...
1740
+ @property
1741
+ def Cases(self) -> ReadOnlyCollection_1[SwitchCase]: ...
1742
+ @property
1743
+ def Comparison(self) -> MethodInfo: ...
1744
+ @property
1745
+ def DefaultBody(self) -> Expression: ...
1746
+ @property
1747
+ def NodeType(self) -> ExpressionType: ...
1748
+ @property
1749
+ def SwitchValue(self) -> Expression: ...
1750
+ @property
1751
+ def Type(self) -> typing.Type[typing.Any]: ...
1752
+ def Update(self, switchValue: Expression, cases: IEnumerable_1[SwitchCase], defaultBody: Expression) -> SwitchExpression: ...
1753
+
1754
+
1755
+ class SymbolDocumentInfo:
1756
+ @property
1757
+ def DocumentType(self) -> Guid: ...
1758
+ @property
1759
+ def FileName(self) -> str: ...
1760
+ @property
1761
+ def Language(self) -> Guid: ...
1762
+ @property
1763
+ def LanguageVendor(self) -> Guid: ...
1764
+
1765
+
1766
+ class TryExpression(Expression_0):
1767
+ @property
1768
+ def Body(self) -> Expression: ...
1769
+ @property
1770
+ def CanReduce(self) -> bool: ...
1771
+ @property
1772
+ def Fault(self) -> Expression: ...
1773
+ @property
1774
+ def Finally(self) -> Expression: ...
1775
+ @property
1776
+ def Handlers(self) -> ReadOnlyCollection_1[CatchBlock]: ...
1777
+ @property
1778
+ def NodeType(self) -> ExpressionType: ...
1779
+ @property
1780
+ def Type(self) -> typing.Type[typing.Any]: ...
1781
+ def Update(self, body: Expression, handlers: IEnumerable_1[CatchBlock], finally: Expression, fault: Expression) -> TryExpression: ...
1782
+
1783
+
1784
+ class TypeBinaryExpression(Expression_0):
1785
+ @property
1786
+ def CanReduce(self) -> bool: ...
1787
+ @property
1788
+ def Expression(self) -> Expression: ...
1789
+ @property
1790
+ def NodeType(self) -> ExpressionType: ...
1791
+ @property
1792
+ def Type(self) -> typing.Type[typing.Any]: ...
1793
+ @property
1794
+ def TypeOperand(self) -> typing.Type[typing.Any]: ...
1795
+ def Update(self, expression: Expression) -> TypeBinaryExpression: ...
1796
+
1797
+
1798
+ class UnaryExpression(Expression_0):
1799
+ @property
1800
+ def CanReduce(self) -> bool: ...
1801
+ @property
1802
+ def IsLifted(self) -> bool: ...
1803
+ @property
1804
+ def IsLiftedToNull(self) -> bool: ...
1805
+ @property
1806
+ def Method(self) -> MethodInfo: ...
1807
+ @property
1808
+ def NodeType(self) -> ExpressionType: ...
1809
+ @property
1810
+ def Operand(self) -> Expression: ...
1811
+ @property
1812
+ def Type(self) -> typing.Type[typing.Any]: ...
1813
+ def Reduce(self) -> Expression: ...
1814
+ def Update(self, operand: Expression) -> UnaryExpression: ...
1815
+