19 references to IsByRef
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
ExpressionTrees\Sources\ExprLambdaUtils.vb (1)
275
If node.
IsByRef
Then
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (1)
351
if (paramExp != null && paramExp.
IsByRef
)
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\IDOBinder.vb (1)
1310
If arg IsNot Nothing AndAlso arg.
IsByRef
Then
System.Linq.Expressions (16)
System\Dynamic\DynamicObject.cs (1)
466
if (variable.
IsByRef
)
System\Linq\Expressions\BlockExpression.cs (1)
1076
if (v.
IsByRef
)
System\Linq\Expressions\CatchBlock.cs (1)
143
else if (variable.
IsByRef
)
System\Linq\Expressions\Compiler\CompilerScope.Storage.cs (1)
52
_local = compiler.GetLocal(variable.
IsByRef
? variable.Type.MakeByRefType() : variable.Type);
System\Linq\Expressions\Compiler\DelegateHelpers.cs (1)
110
return mo.Expression is ParameterExpression pe && pe.
IsByRef
;
System\Linq\Expressions\Compiler\LambdaCompiler.Address.cs (1)
87
if (node.
IsByRef
)
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (2)
720
if (variable.
IsByRef
)
767
if (node.
IsByRef
)
System\Linq\Expressions\Compiler\LambdaCompiler.Lambda.cs (1)
178
result[i] = p.
IsByRef
? p.Type.MakeByRefType() : p.Type;
System\Linq\Expressions\Compiler\VariableBinder.cs (1)
260
if (node.
IsByRef
)
System\Linq\Expressions\DebugViewWriter.cs (1)
241
if (variable.
IsByRef
)
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
378
public bool IsByRef => _node.
IsByRef
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
279
if (node.
IsByRef
)
System\Linq\Expressions\LambdaExpression.cs (2)
867
typeArgs[i] = param.
IsByRef
? param.Type.MakeByRefType() : param.Type;
951
if (pex.
IsByRef
)
System\Linq\Expressions\TypeBinaryExpression.cs (1)
87
if (parameter != null && !parameter.
IsByRef
)