@tsonic/dotnet 0.7.3 → 0.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.VisualBasic/internal/index.d.ts +8 -8
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +2 -2
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +7 -7
- package/System/internal/index.d.ts +79 -72
- package/System.Buffers/internal/index.d.ts +1 -1
- package/System.Buffers.d.ts +11 -2
- package/System.CodeDom.Compiler/internal/index.d.ts +2 -2
- package/System.Collections.Concurrent/internal/index.d.ts +1 -0
- package/System.Collections.Concurrent.d.ts +11 -2
- package/System.Collections.Generic/internal/index.d.ts +10 -0
- package/System.Collections.Immutable/internal/index.d.ts +16 -11
- package/System.Collections.ObjectModel.d.ts +11 -2
- package/System.Collections.Specialized/internal/index.d.ts +3 -2
- package/System.ComponentModel/internal/index.d.ts +11 -7
- package/System.ComponentModel.Design/internal/index.d.ts +3 -0
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +3 -1
- package/System.Data/internal/index.d.ts +12 -7
- package/System.Data.SqlTypes/internal/index.d.ts +26 -26
- package/System.Data.d.ts +17 -4
- package/System.Diagnostics/internal/index.d.ts +19 -19
- package/System.Diagnostics.Metrics/internal/index.d.ts +4 -4
- package/System.Diagnostics.Metrics.d.ts +11 -2
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +1 -1
- package/System.Drawing/internal/index.d.ts +7 -7
- package/System.Dynamic/internal/index.d.ts +2 -2
- package/System.Formats.Asn1/internal/index.d.ts +1 -1
- package/System.Globalization/internal/index.d.ts +1 -1
- package/System.IO/internal/index.d.ts +9 -9
- package/System.Linq/internal/index.d.ts +5 -0
- package/System.Linq.Expressions/internal/index.d.ts +47 -47
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -2
- package/System.Linq.Expressions.d.ts +11 -2
- package/System.Linq.d.ts +35 -10
- package/System.Net/internal/index.d.ts +6 -2
- package/System.Net.Http/internal/index.d.ts +1 -1
- package/System.Net.Security/internal/index.d.ts +1 -1
- package/System.Net.ServerSentEvents.d.ts +11 -2
- package/System.Net.Sockets/internal/index.d.ts +2 -2
- package/System.Numerics/internal/index.d.ts +61 -21
- package/System.Numerics.d.ts +11 -2
- package/System.Reflection/internal/index.d.ts +3 -3
- package/System.Reflection.Emit/internal/index.d.ts +7 -7
- package/System.Reflection.Metadata/internal/index.d.ts +46 -43
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +2 -2
- package/System.Resources/internal/index.d.ts +2 -0
- package/System.Runtime.CompilerServices/internal/index.d.ts +2 -1
- package/System.Runtime.CompilerServices.d.ts +41 -12
- package/System.Runtime.InteropServices/internal/index.d.ts +19 -18
- package/System.Runtime.InteropServices.JavaScript.d.ts +17 -2
- package/System.Runtime.InteropServices.Swift.d.ts +11 -2
- package/System.Runtime.InteropServices.d.ts +11 -2
- package/System.Runtime.Intrinsics/internal/index.d.ts +4 -4
- package/System.Runtime.Intrinsics.d.ts +29 -8
- package/System.Runtime.Versioning/internal/index.d.ts +1 -1
- package/System.Security.AccessControl.d.ts +23 -6
- package/System.Security.Cryptography/internal/index.d.ts +15 -15
- package/System.Security.Principal/internal/index.d.ts +1 -1
- package/System.Text/internal/index.d.ts +10 -9
- package/System.Text.Encodings.Web/internal/index.d.ts +7 -7
- package/System.Text.Json/internal/index.d.ts +1 -1
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +1 -1
- package/System.Text.Json.Serialization.Metadata.d.ts +11 -2
- package/System.Text.Json.Serialization.d.ts +23 -6
- package/System.Threading/internal/index.d.ts +5 -5
- package/System.Threading.Channels.d.ts +13 -2
- package/System.Threading.Tasks/internal/index.d.ts +12 -12
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +1 -1
- package/System.Threading.Tasks.Dataflow.d.ts +21 -2
- package/System.Threading.Tasks.Sources.d.ts +11 -2
- package/System.Threading.Tasks.d.ts +29 -8
- package/System.Transactions/internal/index.d.ts +1 -1
- package/System.Xml.Linq/internal/index.d.ts +10 -10
- package/System.d.ts +75 -14
- package/families.json +359 -0
- package/package.json +1 -1
- package/tsconfig.json +2 -1
|
@@ -302,13 +302,13 @@ export const DynamicExpression: {
|
|
|
302
302
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression, arg1: Expression, arg2: Expression): DynamicExpression;
|
|
303
303
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression, arg1: Expression): DynamicExpression;
|
|
304
304
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression): DynamicExpression;
|
|
305
|
-
dynamic(binder: CallSiteBinder, returnType: Type, arguments: Expression[]): DynamicExpression;
|
|
305
|
+
dynamic(binder: CallSiteBinder, returnType: Type, ...arguments: Expression[]): DynamicExpression;
|
|
306
306
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arguments: IEnumerable_1<Expression>): DynamicExpression;
|
|
307
307
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression): DynamicExpression;
|
|
308
308
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression): DynamicExpression;
|
|
309
309
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression, arg1: Expression): DynamicExpression;
|
|
310
310
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression): DynamicExpression;
|
|
311
|
-
makeDynamic(delegateType: Type, binder: CallSiteBinder, arguments: Expression[]): DynamicExpression;
|
|
311
|
+
makeDynamic(delegateType: Type, binder: CallSiteBinder, ...arguments: Expression[]): DynamicExpression;
|
|
312
312
|
};
|
|
313
313
|
|
|
314
314
|
|
|
@@ -387,26 +387,26 @@ export const Expression: {
|
|
|
387
387
|
andAssign(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
388
388
|
andAssign(left: Expression, right: Expression): BinaryExpression;
|
|
389
389
|
arrayAccess(array: Expression, indexes: IEnumerable_1<Expression>): IndexExpression;
|
|
390
|
-
arrayAccess(array: Expression, indexes: Expression[]): IndexExpression;
|
|
390
|
+
arrayAccess(array: Expression, ...indexes: Expression[]): IndexExpression;
|
|
391
391
|
arrayIndex(array: Expression, indexes: IEnumerable_1<Expression>): MethodCallExpression;
|
|
392
392
|
arrayIndex(array: Expression, index: Expression): BinaryExpression;
|
|
393
|
-
arrayIndex(array: Expression, indexes: Expression[]): MethodCallExpression;
|
|
393
|
+
arrayIndex(array: Expression, ...indexes: Expression[]): MethodCallExpression;
|
|
394
394
|
arrayLength(array: Expression): UnaryExpression;
|
|
395
395
|
assign(left: Expression, right: Expression): BinaryExpression;
|
|
396
396
|
bind(member: MemberInfo, expression: Expression): MemberAssignment;
|
|
397
397
|
bind(propertyAccessor: MethodInfo, expression: Expression): MemberAssignment;
|
|
398
398
|
block(expressions: IEnumerable_1<Expression>): BlockExpression;
|
|
399
399
|
block(variables: IEnumerable_1<ParameterExpression>, expressions: IEnumerable_1<Expression>): BlockExpression;
|
|
400
|
-
block(variables: IEnumerable_1<ParameterExpression>, expressions: Expression[]): BlockExpression;
|
|
400
|
+
block(variables: IEnumerable_1<ParameterExpression>, ...expressions: Expression[]): BlockExpression;
|
|
401
401
|
block(arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression, arg4: Expression): BlockExpression;
|
|
402
402
|
block(arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression): BlockExpression;
|
|
403
403
|
block(arg0: Expression, arg1: Expression, arg2: Expression): BlockExpression;
|
|
404
404
|
block(arg0: Expression, arg1: Expression): BlockExpression;
|
|
405
|
-
block(expressions: Expression[]): BlockExpression;
|
|
405
|
+
block(...expressions: Expression[]): BlockExpression;
|
|
406
406
|
block(type_: Type, expressions: IEnumerable_1<Expression>): BlockExpression;
|
|
407
407
|
block(type_: Type, variables: IEnumerable_1<ParameterExpression>, expressions: IEnumerable_1<Expression>): BlockExpression;
|
|
408
|
-
block(type_: Type, variables: IEnumerable_1<ParameterExpression>, expressions: Expression[]): BlockExpression;
|
|
409
|
-
block(type_: Type, expressions: Expression[]): BlockExpression;
|
|
408
|
+
block(type_: Type, variables: IEnumerable_1<ParameterExpression>, ...expressions: Expression[]): BlockExpression;
|
|
409
|
+
block(type_: Type, ...expressions: Expression[]): BlockExpression;
|
|
410
410
|
break_(target: LabelTarget, value: Expression, type_: Type): GotoExpression;
|
|
411
411
|
break_(target: LabelTarget, value: Expression): GotoExpression;
|
|
412
412
|
break_(target: LabelTarget, type_: Type): GotoExpression;
|
|
@@ -414,17 +414,17 @@ export const Expression: {
|
|
|
414
414
|
call(instance: Expression, method: MethodInfo, arguments: IEnumerable_1<Expression>): MethodCallExpression;
|
|
415
415
|
call(instance: Expression, method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression): MethodCallExpression;
|
|
416
416
|
call(instance: Expression, method: MethodInfo, arg0: Expression, arg1: Expression): MethodCallExpression;
|
|
417
|
-
call(instance: Expression, method: MethodInfo, arguments: Expression[]): MethodCallExpression;
|
|
417
|
+
call(instance: Expression, method: MethodInfo, ...arguments: Expression[]): MethodCallExpression;
|
|
418
418
|
call(instance: Expression, method: MethodInfo): MethodCallExpression;
|
|
419
|
-
call(instance: Expression, methodName: string, typeArguments: Type[], arguments: Expression[]): MethodCallExpression;
|
|
419
|
+
call(instance: Expression, methodName: string, typeArguments: Type[], ...arguments: Expression[]): MethodCallExpression;
|
|
420
420
|
call(method: MethodInfo, arguments: IEnumerable_1<Expression>): MethodCallExpression;
|
|
421
421
|
call(method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression, arg4: Expression): MethodCallExpression;
|
|
422
422
|
call(method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression, arg3: Expression): MethodCallExpression;
|
|
423
423
|
call(method: MethodInfo, arg0: Expression, arg1: Expression, arg2: Expression): MethodCallExpression;
|
|
424
424
|
call(method: MethodInfo, arg0: Expression, arg1: Expression): MethodCallExpression;
|
|
425
425
|
call(method: MethodInfo, arg0: Expression): MethodCallExpression;
|
|
426
|
-
call(method: MethodInfo, arguments: Expression[]): MethodCallExpression;
|
|
427
|
-
call(type_: Type, methodName: string, typeArguments: Type[], arguments: Expression[]): MethodCallExpression;
|
|
426
|
+
call(method: MethodInfo, ...arguments: Expression[]): MethodCallExpression;
|
|
427
|
+
call(type_: Type, methodName: string, typeArguments: Type[], ...arguments: Expression[]): MethodCallExpression;
|
|
428
428
|
catch_(variable: ParameterExpression, body: Expression, filter: Expression): CatchBlock;
|
|
429
429
|
catch_(variable: ParameterExpression, body: Expression): CatchBlock;
|
|
430
430
|
catch_(type_: Type, body: Expression, filter: Expression): CatchBlock;
|
|
@@ -456,9 +456,9 @@ export const Expression: {
|
|
|
456
456
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression, arg1: Expression, arg2: Expression): DynamicExpression;
|
|
457
457
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression, arg1: Expression): DynamicExpression;
|
|
458
458
|
dynamic(binder: CallSiteBinder, returnType: Type, arg0: Expression): DynamicExpression;
|
|
459
|
-
dynamic(binder: CallSiteBinder, returnType: Type, arguments: Expression[]): DynamicExpression;
|
|
459
|
+
dynamic(binder: CallSiteBinder, returnType: Type, ...arguments: Expression[]): DynamicExpression;
|
|
460
460
|
elementInit(addMethod: MethodInfo, arguments: IEnumerable_1<Expression>): ElementInit;
|
|
461
|
-
elementInit(addMethod: MethodInfo, arguments: Expression[]): ElementInit;
|
|
461
|
+
elementInit(addMethod: MethodInfo, ...arguments: Expression[]): ElementInit;
|
|
462
462
|
empty(): DefaultExpression;
|
|
463
463
|
equal(left: Expression, right: Expression, liftToNull: boolean, method: MethodInfo): BinaryExpression;
|
|
464
464
|
equal(left: Expression, right: Expression): BinaryExpression;
|
|
@@ -470,9 +470,9 @@ export const Expression: {
|
|
|
470
470
|
field(expression: Expression, field: FieldInfo): MemberExpression;
|
|
471
471
|
field(expression: Expression, fieldName: string): MemberExpression;
|
|
472
472
|
field(expression: Expression, type_: Type, fieldName: string): MemberExpression;
|
|
473
|
-
getActionType(typeArgs: Type[]): Type;
|
|
474
|
-
getDelegateType(typeArgs: Type[]): Type;
|
|
475
|
-
getFuncType(typeArgs: Type[]): Type;
|
|
473
|
+
getActionType(...typeArgs: Type[]): Type;
|
|
474
|
+
getDelegateType(...typeArgs: Type[]): Type;
|
|
475
|
+
getFuncType(...typeArgs: Type[]): Type;
|
|
476
476
|
goto(target: LabelTarget, value: Expression, type_: Type): GotoExpression;
|
|
477
477
|
goto(target: LabelTarget, value: Expression): GotoExpression;
|
|
478
478
|
goto(target: LabelTarget, type_: Type): GotoExpression;
|
|
@@ -486,7 +486,7 @@ export const Expression: {
|
|
|
486
486
|
increment(expression: Expression, method: MethodInfo): UnaryExpression;
|
|
487
487
|
increment(expression: Expression): UnaryExpression;
|
|
488
488
|
invoke(expression: Expression, arguments: IEnumerable_1<Expression>): InvocationExpression;
|
|
489
|
-
invoke(expression: Expression, arguments: Expression[]): InvocationExpression;
|
|
489
|
+
invoke(expression: Expression, ...arguments: Expression[]): InvocationExpression;
|
|
490
490
|
isFalse(expression: Expression, method: MethodInfo): UnaryExpression;
|
|
491
491
|
isFalse(expression: Expression): UnaryExpression;
|
|
492
492
|
isTrue(expression: Expression, method: MethodInfo): UnaryExpression;
|
|
@@ -499,20 +499,20 @@ export const Expression: {
|
|
|
499
499
|
label(type_: Type): LabelTarget;
|
|
500
500
|
lambda<TDelegate>(body: Expression, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): Expression_1<TDelegate>;
|
|
501
501
|
lambda(body: Expression, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
502
|
-
lambda<TDelegate>(body: Expression, tailCall: boolean, parameters: ParameterExpression[]): Expression_1<TDelegate>;
|
|
503
|
-
lambda(body: Expression, tailCall: boolean, parameters: ParameterExpression[]): LambdaExpression;
|
|
502
|
+
lambda<TDelegate>(body: Expression, tailCall: boolean, ...parameters: ParameterExpression[]): Expression_1<TDelegate>;
|
|
503
|
+
lambda(body: Expression, tailCall: boolean, ...parameters: ParameterExpression[]): LambdaExpression;
|
|
504
504
|
lambda<TDelegate>(body: Expression, parameters: IEnumerable_1<ParameterExpression>): Expression_1<TDelegate>;
|
|
505
505
|
lambda(body: Expression, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
506
|
-
lambda<TDelegate>(body: Expression, parameters: ParameterExpression[]): Expression_1<TDelegate>;
|
|
507
|
-
lambda(body: Expression, parameters: ParameterExpression[]): LambdaExpression;
|
|
506
|
+
lambda<TDelegate>(body: Expression, ...parameters: ParameterExpression[]): Expression_1<TDelegate>;
|
|
507
|
+
lambda(body: Expression, ...parameters: ParameterExpression[]): LambdaExpression;
|
|
508
508
|
lambda<TDelegate>(body: Expression, name: string, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): Expression_1<TDelegate>;
|
|
509
509
|
lambda(body: Expression, name: string, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
510
510
|
lambda<TDelegate>(body: Expression, name: string, parameters: IEnumerable_1<ParameterExpression>): Expression_1<TDelegate>;
|
|
511
511
|
lambda(body: Expression, name: string, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
512
512
|
lambda(delegateType: Type, body: Expression, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
513
|
-
lambda(delegateType: Type, body: Expression, tailCall: boolean, parameters: ParameterExpression[]): LambdaExpression;
|
|
513
|
+
lambda(delegateType: Type, body: Expression, tailCall: boolean, ...parameters: ParameterExpression[]): LambdaExpression;
|
|
514
514
|
lambda(delegateType: Type, body: Expression, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
515
|
-
lambda(delegateType: Type, body: Expression, parameters: ParameterExpression[]): LambdaExpression;
|
|
515
|
+
lambda(delegateType: Type, body: Expression, ...parameters: ParameterExpression[]): LambdaExpression;
|
|
516
516
|
lambda(delegateType: Type, body: Expression, name: string, tailCall: boolean, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
517
517
|
lambda(delegateType: Type, body: Expression, name: string, parameters: IEnumerable_1<ParameterExpression>): LambdaExpression;
|
|
518
518
|
leftShift(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
@@ -525,15 +525,15 @@ export const Expression: {
|
|
|
525
525
|
lessThanOrEqual(left: Expression, right: Expression, liftToNull: boolean, method: MethodInfo): BinaryExpression;
|
|
526
526
|
lessThanOrEqual(left: Expression, right: Expression): BinaryExpression;
|
|
527
527
|
listBind(member: MemberInfo, initializers: IEnumerable_1<ElementInit>): MemberListBinding;
|
|
528
|
-
listBind(member: MemberInfo, initializers: ElementInit[]): MemberListBinding;
|
|
528
|
+
listBind(member: MemberInfo, ...initializers: ElementInit[]): MemberListBinding;
|
|
529
529
|
listBind(propertyAccessor: MethodInfo, initializers: IEnumerable_1<ElementInit>): MemberListBinding;
|
|
530
|
-
listBind(propertyAccessor: MethodInfo, initializers: ElementInit[]): MemberListBinding;
|
|
530
|
+
listBind(propertyAccessor: MethodInfo, ...initializers: ElementInit[]): MemberListBinding;
|
|
531
531
|
listInit(newExpression: NewExpression, initializers: IEnumerable_1<ElementInit>): ListInitExpression;
|
|
532
532
|
listInit(newExpression: NewExpression, initializers: IEnumerable_1<Expression>): ListInitExpression;
|
|
533
|
-
listInit(newExpression: NewExpression, initializers: ElementInit[]): ListInitExpression;
|
|
534
|
-
listInit(newExpression: NewExpression, initializers: Expression[]): ListInitExpression;
|
|
533
|
+
listInit(newExpression: NewExpression, ...initializers: ElementInit[]): ListInitExpression;
|
|
534
|
+
listInit(newExpression: NewExpression, ...initializers: Expression[]): ListInitExpression;
|
|
535
535
|
listInit(newExpression: NewExpression, addMethod: MethodInfo, initializers: IEnumerable_1<Expression>): ListInitExpression;
|
|
536
|
-
listInit(newExpression: NewExpression, addMethod: MethodInfo, initializers: Expression[]): ListInitExpression;
|
|
536
|
+
listInit(newExpression: NewExpression, addMethod: MethodInfo, ...initializers: Expression[]): ListInitExpression;
|
|
537
537
|
loop(body: Expression, break_: LabelTarget, continue_: LabelTarget): LoopExpression;
|
|
538
538
|
loop(body: Expression, break_: LabelTarget): LoopExpression;
|
|
539
539
|
loop(body: Expression): LoopExpression;
|
|
@@ -546,7 +546,7 @@ export const Expression: {
|
|
|
546
546
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression, arg1: Expression, arg2: Expression): DynamicExpression;
|
|
547
547
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression, arg1: Expression): DynamicExpression;
|
|
548
548
|
makeDynamic(delegateType: Type, binder: CallSiteBinder, arg0: Expression): DynamicExpression;
|
|
549
|
-
makeDynamic(delegateType: Type, binder: CallSiteBinder, arguments: Expression[]): DynamicExpression;
|
|
549
|
+
makeDynamic(delegateType: Type, binder: CallSiteBinder, ...arguments: Expression[]): DynamicExpression;
|
|
550
550
|
makeGoto(kind: GotoExpressionKind, target: LabelTarget, value: Expression, type_: Type): GotoExpression;
|
|
551
551
|
makeIndex(instance: Expression, indexer: PropertyInfo, arguments: IEnumerable_1<Expression>): IndexExpression;
|
|
552
552
|
makeMemberAccess(expression: Expression, member: MemberInfo): MemberExpression;
|
|
@@ -554,11 +554,11 @@ export const Expression: {
|
|
|
554
554
|
makeUnary(unaryType: ExpressionType, operand: Expression, type_: Type, method: MethodInfo): UnaryExpression;
|
|
555
555
|
makeUnary(unaryType: ExpressionType, operand: Expression, type_: Type): UnaryExpression;
|
|
556
556
|
memberBind(member: MemberInfo, bindings: IEnumerable_1<MemberBinding>): MemberMemberBinding;
|
|
557
|
-
memberBind(member: MemberInfo, bindings: MemberBinding[]): MemberMemberBinding;
|
|
557
|
+
memberBind(member: MemberInfo, ...bindings: MemberBinding[]): MemberMemberBinding;
|
|
558
558
|
memberBind(propertyAccessor: MethodInfo, bindings: IEnumerable_1<MemberBinding>): MemberMemberBinding;
|
|
559
|
-
memberBind(propertyAccessor: MethodInfo, bindings: MemberBinding[]): MemberMemberBinding;
|
|
559
|
+
memberBind(propertyAccessor: MethodInfo, ...bindings: MemberBinding[]): MemberMemberBinding;
|
|
560
560
|
memberInit(newExpression: NewExpression, bindings: IEnumerable_1<MemberBinding>): MemberInitExpression;
|
|
561
|
-
memberInit(newExpression: NewExpression, bindings: MemberBinding[]): MemberInitExpression;
|
|
561
|
+
memberInit(newExpression: NewExpression, ...bindings: MemberBinding[]): MemberInitExpression;
|
|
562
562
|
modulo(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
563
563
|
modulo(left: Expression, right: Expression): BinaryExpression;
|
|
564
564
|
moduloAssign(left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression): BinaryExpression;
|
|
@@ -579,15 +579,15 @@ export const Expression: {
|
|
|
579
579
|
negateChecked(expression: Expression, method: MethodInfo): UnaryExpression;
|
|
580
580
|
negateChecked(expression: Expression): UnaryExpression;
|
|
581
581
|
new_(constructor_: ConstructorInfo, arguments: IEnumerable_1<Expression>, members: IEnumerable_1<MemberInfo>): NewExpression;
|
|
582
|
-
new_(constructor_: ConstructorInfo, arguments: IEnumerable_1<Expression>, members: MemberInfo[]): NewExpression;
|
|
582
|
+
new_(constructor_: ConstructorInfo, arguments: IEnumerable_1<Expression>, ...members: MemberInfo[]): NewExpression;
|
|
583
583
|
new_(constructor_: ConstructorInfo, arguments: IEnumerable_1<Expression>): NewExpression;
|
|
584
|
-
new_(constructor_: ConstructorInfo, arguments: Expression[]): NewExpression;
|
|
584
|
+
new_(constructor_: ConstructorInfo, ...arguments: Expression[]): NewExpression;
|
|
585
585
|
new_(constructor_: ConstructorInfo): NewExpression;
|
|
586
586
|
new_(type_: Type): NewExpression;
|
|
587
587
|
newArrayBounds(type_: Type, bounds: IEnumerable_1<Expression>): NewArrayExpression;
|
|
588
|
-
newArrayBounds(type_: Type, bounds: Expression[]): NewArrayExpression;
|
|
588
|
+
newArrayBounds(type_: Type, ...bounds: Expression[]): NewArrayExpression;
|
|
589
589
|
newArrayInit(type_: Type, initializers: IEnumerable_1<Expression>): NewArrayExpression;
|
|
590
|
-
newArrayInit(type_: Type, initializers: Expression[]): NewArrayExpression;
|
|
590
|
+
newArrayInit(type_: Type, ...initializers: Expression[]): NewArrayExpression;
|
|
591
591
|
not(expression: Expression, method: MethodInfo): UnaryExpression;
|
|
592
592
|
not(expression: Expression): UnaryExpression;
|
|
593
593
|
notEqual(left: Expression, right: Expression, liftToNull: boolean, method: MethodInfo): BinaryExpression;
|
|
@@ -618,9 +618,9 @@ export const Expression: {
|
|
|
618
618
|
preIncrementAssign(expression: Expression): UnaryExpression;
|
|
619
619
|
property(expression: Expression, propertyAccessor: MethodInfo): MemberExpression;
|
|
620
620
|
property(instance: Expression, indexer: PropertyInfo, arguments: IEnumerable_1<Expression>): IndexExpression;
|
|
621
|
-
property(instance: Expression, indexer: PropertyInfo, arguments: Expression[]): IndexExpression;
|
|
621
|
+
property(instance: Expression, indexer: PropertyInfo, ...arguments: Expression[]): IndexExpression;
|
|
622
622
|
property(expression: Expression, property: PropertyInfo): MemberExpression;
|
|
623
|
-
property(instance: Expression, propertyName: string, arguments: Expression[]): IndexExpression;
|
|
623
|
+
property(instance: Expression, propertyName: string, ...arguments: Expression[]): IndexExpression;
|
|
624
624
|
property(expression: Expression, propertyName: string): MemberExpression;
|
|
625
625
|
property(expression: Expression, type_: Type, propertyName: string): MemberExpression;
|
|
626
626
|
propertyOrField(expression: Expression, propertyOrFieldName: string): MemberExpression;
|
|
@@ -639,7 +639,7 @@ export const Expression: {
|
|
|
639
639
|
rightShiftAssign(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
640
640
|
rightShiftAssign(left: Expression, right: Expression): BinaryExpression;
|
|
641
641
|
runtimeVariables(variables: IEnumerable_1<ParameterExpression>): RuntimeVariablesExpression;
|
|
642
|
-
runtimeVariables(variables: ParameterExpression[]): RuntimeVariablesExpression;
|
|
642
|
+
runtimeVariables(...variables: ParameterExpression[]): RuntimeVariablesExpression;
|
|
643
643
|
subtract(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
644
644
|
subtract(left: Expression, right: Expression): BinaryExpression;
|
|
645
645
|
subtractAssign(left: Expression, right: Expression, method: MethodInfo, conversion: LambdaExpression): BinaryExpression;
|
|
@@ -650,22 +650,22 @@ export const Expression: {
|
|
|
650
650
|
subtractAssignChecked(left: Expression, right: Expression): BinaryExpression;
|
|
651
651
|
subtractChecked(left: Expression, right: Expression, method: MethodInfo): BinaryExpression;
|
|
652
652
|
subtractChecked(left: Expression, right: Expression): BinaryExpression;
|
|
653
|
-
switch_(switchValue: Expression, defaultBody: Expression, cases: SwitchCase[]): SwitchExpression;
|
|
653
|
+
switch_(switchValue: Expression, defaultBody: Expression, ...cases: SwitchCase[]): SwitchExpression;
|
|
654
654
|
switch_(switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: IEnumerable_1<SwitchCase>): SwitchExpression;
|
|
655
|
-
switch_(switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: SwitchCase[]): SwitchExpression;
|
|
656
|
-
switch_(switchValue: Expression, cases: SwitchCase[]): SwitchExpression;
|
|
655
|
+
switch_(switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, ...cases: SwitchCase[]): SwitchExpression;
|
|
656
|
+
switch_(switchValue: Expression, ...cases: SwitchCase[]): SwitchExpression;
|
|
657
657
|
switch_(type_: Type, switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: IEnumerable_1<SwitchCase>): SwitchExpression;
|
|
658
|
-
switch_(type_: Type, switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, cases: SwitchCase[]): SwitchExpression;
|
|
658
|
+
switch_(type_: Type, switchValue: Expression, defaultBody: Expression, comparison: MethodInfo, ...cases: SwitchCase[]): SwitchExpression;
|
|
659
659
|
switchCase(body: Expression, testValues: IEnumerable_1<Expression>): SwitchCase;
|
|
660
|
-
switchCase(body: Expression, testValues: Expression[]): SwitchCase;
|
|
660
|
+
switchCase(body: Expression, ...testValues: Expression[]): SwitchCase;
|
|
661
661
|
symbolDocument(fileName: string, language: Guid, languageVendor: Guid, documentType: Guid): SymbolDocumentInfo;
|
|
662
662
|
symbolDocument(fileName: string, language: Guid, languageVendor: Guid): SymbolDocumentInfo;
|
|
663
663
|
symbolDocument(fileName: string, language: Guid): SymbolDocumentInfo;
|
|
664
664
|
symbolDocument(fileName: string): SymbolDocumentInfo;
|
|
665
665
|
throw_(value: Expression, type_: Type): UnaryExpression;
|
|
666
666
|
throw_(value: Expression): UnaryExpression;
|
|
667
|
-
tryCatch(body: Expression, handlers: CatchBlock[]): TryExpression;
|
|
668
|
-
tryCatchFinally(body: Expression, finally_: Expression, handlers: CatchBlock[]): TryExpression;
|
|
667
|
+
tryCatch(body: Expression, ...handlers: CatchBlock[]): TryExpression;
|
|
668
|
+
tryCatchFinally(body: Expression, finally_: Expression, ...handlers: CatchBlock[]): TryExpression;
|
|
669
669
|
tryFault(body: Expression, fault: Expression): TryExpression;
|
|
670
670
|
tryFinally(body: Expression, finally_: Expression): TryExpression;
|
|
671
671
|
tryGetActionType(typeArgs: Type[], actionType: { value: ref<Type> }): boolean;
|
|
@@ -35,8 +35,8 @@ export type CLROf<T> =
|
|
|
35
35
|
T; // Identity fallback for non-primitive types
|
|
36
36
|
|
|
37
37
|
export interface LightLambda$instance {
|
|
38
|
-
run(arguments: unknown[]): unknown;
|
|
39
|
-
runVoid(arguments: unknown[]): unknown;
|
|
38
|
+
run(...arguments: unknown[]): unknown;
|
|
39
|
+
runVoid(...arguments: unknown[]): unknown;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
|
|
@@ -14,7 +14,6 @@ import type { Boolean as ClrBoolean, Delegate, Enum, Func_2, Guid, IComparable,
|
|
|
14
14
|
|
|
15
15
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
16
16
|
export { BinaryExpression as BinaryExpression } from './System.Linq.Expressions/internal/index.js';
|
|
17
|
-
export { Expression as Expression_0 } from './System.Linq.Expressions/internal/index.js';
|
|
18
17
|
export { BlockExpression as BlockExpression } from './System.Linq.Expressions/internal/index.js';
|
|
19
18
|
export { CatchBlock as CatchBlock } from './System.Linq.Expressions/internal/index.js';
|
|
20
19
|
export { ConditionalExpression as ConditionalExpression } from './System.Linq.Expressions/internal/index.js';
|
|
@@ -33,7 +32,6 @@ export { InvocationExpression as InvocationExpression } from './System.Linq.Expr
|
|
|
33
32
|
export { LabelExpression as LabelExpression } from './System.Linq.Expressions/internal/index.js';
|
|
34
33
|
export { LabelTarget as LabelTarget } from './System.Linq.Expressions/internal/index.js';
|
|
35
34
|
export { LambdaExpression as LambdaExpression } from './System.Linq.Expressions/internal/index.js';
|
|
36
|
-
export { Expression_1 as Expression } from './System.Linq.Expressions/internal/index.js';
|
|
37
35
|
export { ListInitExpression as ListInitExpression } from './System.Linq.Expressions/internal/index.js';
|
|
38
36
|
export { LoopExpression as LoopExpression } from './System.Linq.Expressions/internal/index.js';
|
|
39
37
|
export { MemberAssignment as MemberAssignment } from './System.Linq.Expressions/internal/index.js';
|
|
@@ -56,3 +54,14 @@ export { TypeBinaryExpression as TypeBinaryExpression } from './System.Linq.Expr
|
|
|
56
54
|
export { UnaryExpression as UnaryExpression } from './System.Linq.Expressions/internal/index.js';
|
|
57
55
|
export { DynamicExpressionVisitor as DynamicExpressionVisitor } from './System.Linq.Expressions/internal/index.js';
|
|
58
56
|
export { DynamicExpression as DynamicExpression } from './System.Linq.Expressions/internal/index.js';
|
|
57
|
+
|
|
58
|
+
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
59
|
+
declare const __unspecified: unique symbol;
|
|
60
|
+
export type __ = typeof __unspecified;
|
|
61
|
+
|
|
62
|
+
export type Expression<
|
|
63
|
+
T1 = __,
|
|
64
|
+
> =
|
|
65
|
+
[T1] extends [__] ? Internal.Expression :
|
|
66
|
+
Internal.Expression_1<T1>;
|
|
67
|
+
|
package/System.Linq.d.ts
CHANGED
|
@@ -25,19 +25,44 @@ export { Lookup_2 as Lookup } from './System.Linq/internal/index.js';
|
|
|
25
25
|
export type IOrderedEnumerable<TElement> = Internal.IOrderedEnumerable_1<TElement>;
|
|
26
26
|
export { AsyncEnumerable$instance as AsyncEnumerable } from './System.Linq/internal/index.js';
|
|
27
27
|
export type IOrderedAsyncEnumerable<TElement> = Internal.IOrderedAsyncEnumerable_1<TElement>;
|
|
28
|
-
export type IQueryable_0 = Internal.IQueryable;
|
|
29
|
-
export type IQueryable<T> = Internal.IQueryable_1<T>;
|
|
30
28
|
export type IQueryProvider = Internal.IQueryProvider;
|
|
31
|
-
export type IOrderedQueryable_0 = Internal.IOrderedQueryable;
|
|
32
|
-
export type IOrderedQueryable<T> = Internal.IOrderedQueryable_1<T>;
|
|
33
29
|
export { OrderedParallelQuery_1 as OrderedParallelQuery } from './System.Linq/internal/index.js';
|
|
34
|
-
export { ParallelQuery as ParallelQuery_0 } from './System.Linq/internal/index.js';
|
|
35
|
-
export { ParallelQuery_1 as ParallelQuery } from './System.Linq/internal/index.js';
|
|
36
30
|
export { ParallelEnumerable$instance as ParallelEnumerable } from './System.Linq/internal/index.js';
|
|
37
31
|
export { ParallelExecutionMode as ParallelExecutionMode } from './System.Linq/internal/index.js';
|
|
38
32
|
export { ParallelMergeOptions as ParallelMergeOptions } from './System.Linq/internal/index.js';
|
|
39
|
-
export { EnumerableExecutor as EnumerableExecutor_0 } from './System.Linq/internal/index.js';
|
|
40
|
-
export { EnumerableExecutor_1 as EnumerableExecutor } from './System.Linq/internal/index.js';
|
|
41
|
-
export { EnumerableQuery as EnumerableQuery_0 } from './System.Linq/internal/index.js';
|
|
42
|
-
export { EnumerableQuery_1 as EnumerableQuery } from './System.Linq/internal/index.js';
|
|
43
33
|
export { Queryable$instance as Queryable } from './System.Linq/internal/index.js';
|
|
34
|
+
|
|
35
|
+
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
36
|
+
declare const __unspecified: unique symbol;
|
|
37
|
+
export type __ = typeof __unspecified;
|
|
38
|
+
|
|
39
|
+
export type EnumerableExecutor<
|
|
40
|
+
T1 = __,
|
|
41
|
+
> =
|
|
42
|
+
[T1] extends [__] ? Internal.EnumerableExecutor :
|
|
43
|
+
Internal.EnumerableExecutor_1<T1>;
|
|
44
|
+
|
|
45
|
+
export type EnumerableQuery<
|
|
46
|
+
T1 = __,
|
|
47
|
+
> =
|
|
48
|
+
[T1] extends [__] ? Internal.EnumerableQuery :
|
|
49
|
+
Internal.EnumerableQuery_1<T1>;
|
|
50
|
+
|
|
51
|
+
export type IOrderedQueryable<
|
|
52
|
+
T1 = __,
|
|
53
|
+
> =
|
|
54
|
+
[T1] extends [__] ? Internal.IOrderedQueryable :
|
|
55
|
+
Internal.IOrderedQueryable_1<T1>;
|
|
56
|
+
|
|
57
|
+
export type IQueryable<
|
|
58
|
+
T1 = __,
|
|
59
|
+
> =
|
|
60
|
+
[T1] extends [__] ? Internal.IQueryable :
|
|
61
|
+
Internal.IQueryable_1<T1>;
|
|
62
|
+
|
|
63
|
+
export type ParallelQuery<
|
|
64
|
+
T1 = __,
|
|
65
|
+
> =
|
|
66
|
+
[T1] extends [__] ? Internal.ParallelQuery :
|
|
67
|
+
Internal.ParallelQuery_1<T1>;
|
|
68
|
+
|
|
@@ -452,7 +452,8 @@ export interface __IPNetwork$views {
|
|
|
452
452
|
As_IUtf8SpanParsable_1(): System_Internal.IUtf8SpanParsable_1$instance<IPNetwork>;
|
|
453
453
|
|
|
454
454
|
// Structural method bridges for numeric interface constraints
|
|
455
|
-
|
|
455
|
+
equals(other: IPNetwork): boolean;
|
|
456
|
+
tryFormat(utf8Destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").CLROf<byte>>, bytesWritten: { value: ref<int> }, format: import("../../System/internal/index").ReadOnlySpan_1<import("../../System/internal/index").CLROf<char>>, provider: import("../../System/internal/index").IFormatProvider): boolean;
|
|
456
457
|
}
|
|
457
458
|
|
|
458
459
|
export interface IPNetwork$instance extends System_Internal.ISpanParsable_1$instance<IPNetwork> {}
|
|
@@ -1270,6 +1271,9 @@ export interface __IPAddress$views {
|
|
|
1270
1271
|
As_ISpanParsable_1(): System_Internal.ISpanParsable_1$instance<IPAddress>;
|
|
1271
1272
|
As_IUtf8SpanFormattable(): System_Internal.IUtf8SpanFormattable$instance;
|
|
1272
1273
|
As_IUtf8SpanParsable_1(): System_Internal.IUtf8SpanParsable_1$instance<IPAddress>;
|
|
1274
|
+
|
|
1275
|
+
// Structural method bridges for numeric interface constraints
|
|
1276
|
+
tryFormat(utf8Destination: import("../../System/internal/index").Span_1<import("../../System/internal/index").CLROf<byte>>, bytesWritten: { value: ref<int> }, format: import("../../System/internal/index").ReadOnlySpan_1<import("../../System/internal/index").CLROf<char>>, provider: import("../../System/internal/index").IFormatProvider): boolean;
|
|
1273
1277
|
}
|
|
1274
1278
|
|
|
1275
1279
|
export interface IPAddress$instance extends System_Internal.ISpanParsable_1$instance<IPAddress> {}
|
|
@@ -1477,7 +1481,7 @@ export interface __SocketAddress$views {
|
|
|
1477
1481
|
As_IEquatable_1(): System_Internal.IEquatable_1$instance<SocketAddress>;
|
|
1478
1482
|
|
|
1479
1483
|
// Structural method bridges for numeric interface constraints
|
|
1480
|
-
|
|
1484
|
+
equals(other: SocketAddress): boolean;
|
|
1481
1485
|
}
|
|
1482
1486
|
|
|
1483
1487
|
export type SocketAddress = SocketAddress$instance & __SocketAddress$views;
|
|
@@ -396,7 +396,7 @@ export interface __HttpMethod$views {
|
|
|
396
396
|
As_IEquatable_1(): System_Internal.IEquatable_1$instance<HttpMethod>;
|
|
397
397
|
|
|
398
398
|
// Structural method bridges for numeric interface constraints
|
|
399
|
-
|
|
399
|
+
equals(other: HttpMethod): boolean;
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
export type HttpMethod = HttpMethod$instance & __HttpMethod$views;
|
|
@@ -476,7 +476,7 @@ export interface __SslApplicationProtocol$views {
|
|
|
476
476
|
As_IEquatable_1(): System_Internal.IEquatable_1$instance<SslApplicationProtocol>;
|
|
477
477
|
|
|
478
478
|
// Structural method bridges for numeric interface constraints
|
|
479
|
-
|
|
479
|
+
equals(other: SslApplicationProtocol): boolean;
|
|
480
480
|
}
|
|
481
481
|
|
|
482
482
|
export type SslApplicationProtocol = SslApplicationProtocol$instance & __SslApplicationProtocol$views;
|
|
@@ -17,7 +17,16 @@ import type { Action_2, AsyncCallback, Boolean as ClrBoolean, Byte, Delegate, IA
|
|
|
17
17
|
|
|
18
18
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
19
19
|
export { SseFormatter$instance as SseFormatter } from './System.Net.ServerSentEvents/internal/index.js';
|
|
20
|
-
export { SseParser_1 as SseParser } from './System.Net.ServerSentEvents/internal/index.js';
|
|
21
20
|
export { SseItem_1 as SseItem } from './System.Net.ServerSentEvents/internal/index.js';
|
|
22
21
|
export type SseItemParser<T> = Internal.SseItemParser_1<T>;
|
|
23
|
-
|
|
22
|
+
|
|
23
|
+
// Multi-arity family sentinel (detects unspecified type parameters)
|
|
24
|
+
declare const __unspecified: unique symbol;
|
|
25
|
+
export type __ = typeof __unspecified;
|
|
26
|
+
|
|
27
|
+
export type SseParser<
|
|
28
|
+
T1 = __,
|
|
29
|
+
> =
|
|
30
|
+
[T1] extends [__] ? Internal.SseParser :
|
|
31
|
+
Internal.SseParser_1<T1>;
|
|
32
|
+
|
|
@@ -402,7 +402,7 @@ export interface __IPPacketInformation$views {
|
|
|
402
402
|
As_IEquatable_1(): System_Internal.IEquatable_1$instance<IPPacketInformation>;
|
|
403
403
|
|
|
404
404
|
// Structural method bridges for numeric interface constraints
|
|
405
|
-
|
|
405
|
+
equals(other: IPPacketInformation): boolean;
|
|
406
406
|
}
|
|
407
407
|
|
|
408
408
|
export type IPPacketInformation = IPPacketInformation$instance & __IPPacketInformation$views;
|
|
@@ -467,7 +467,7 @@ export interface __UdpReceiveResult$views {
|
|
|
467
467
|
As_IEquatable_1(): System_Internal.IEquatable_1$instance<UdpReceiveResult>;
|
|
468
468
|
|
|
469
469
|
// Structural method bridges for numeric interface constraints
|
|
470
|
-
|
|
470
|
+
equals(other: UdpReceiveResult): boolean;
|
|
471
471
|
}
|
|
472
472
|
|
|
473
473
|
export type UdpReceiveResult = UdpReceiveResult$instance & __UdpReceiveResult$views;
|