16 references to EXF_LVALUE
Microsoft.CSharp (16)
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
417
result.Flags |= EXPRFLAG.
EXF_LVALUE
;
1191
callingObject.Flags |= EXPRFLAG.
EXF_LVALUE
;
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
1075
(((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)
665
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
1558
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
1940
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2121
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2258
Debug.Assert((exprRes.Flags & EXPRFLAG.
EXF_LVALUE
) == 0);
2313
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
;