20 references to RuntimeOps
System.Linq.Expressions (20)
System\Dynamic\ExpandoObject.cs (10)
23
typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.ExpandoTryGetValue))!;
26
typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.ExpandoTrySetValue))!;
29
typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.ExpandoTryDeleteValue))!;
32
typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.ExpandoPromoteClass))!;
35
typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.ExpandoCheckVersion))!;
System\Linq\Expressions\Common\CachedReflectionInfo.cs (8)
152
s_RuntimeOps_CreateRuntimeVariables_ObjectArray_Int64Array ??= typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.CreateRuntimeVariables), new[] { typeof(object[]), typeof(long[]) })!;
156
s_RuntimeOps_CreateRuntimeVariables ??= typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.CreateRuntimeVariables), Type.EmptyTypes)!;
160
s_RuntimeOps_MergeRuntimeVariables ??= typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.MergeRuntimeVariables))!;
164
s_RuntimeOps_Quote ??= typeof(
RuntimeOps
).GetMethod(nameof(
RuntimeOps
.Quote))!;
System\Linq\Expressions\Interpreter\TypeOperations.cs (2)
602
ConstantExpression boxesConst = Expression.Constant(new
RuntimeOps
.RuntimeVariables(boxes.ToArray()), typeof(IRuntimeVariables));
620
return new
RuntimeOps
.MergedRuntimeVariables(first, second, indexes);