16 references to EXF_LVALUE
Microsoft.CSharp (16)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
404
result.Flags |= EXPRFLAG.
EXF_LVALUE
;
1165
callingObject.Flags |= EXPRFLAG.
EXF_LVALUE
;
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
1052
(((pObject.Flags & EXPRFLAG.
EXF_LVALUE
) != 0) && (pObject.Kind != ExpressionKind.Property)) ||
Microsoft\CSharp\RuntimeBinder\Semantics\EXPRExtensions.cs (1)
56
return (expr == null) ? false : 0 != (expr.Flags & EXPRFLAG.
EXF_LVALUE
);
Microsoft\CSharp\RuntimeBinder\Semantics\EXPRFLAG.cs (1)
111
EXF_PUSH_OP_FIRST | EXF_ASSGOP |
EXF_LVALUE
| EXF_SAMENAMETYPE,
Microsoft\CSharp\RuntimeBinder\Semantics\Operators.cs (6)
649
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
1530
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
1896
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2071
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2206
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2260
Debug.Assert(0 == (exprRes.Flags & EXPRFLAG.
EXF_LVALUE
));
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\ArrayIndex.cs (1)
13
Flags = EXPRFLAG.
EXF_LVALUE
| EXPRFLAG.EXF_ASSGOP;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Field.cs (1)
11
Flags = field.Field().isReadOnly ? 0 : EXPRFLAG.
EXF_LVALUE
;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\LocalVariable.cs (1)
13
Flags = EXPRFLAG.
EXF_LVALUE
;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Property.cs (1)
36
Flags = EXPRFLAG.
EXF_LVALUE
;
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Temporary.cs (1)
13
Flags = EXPRFLAG.
EXF_LVALUE
;