-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need a proper representation for __arglist argument for IOperation #19673
Labels
Area-Analyzers
Feature - IOperation
IOperation
_Product-level triaged
Resolution-Duplicate
The described behavior is tracked in another issue
Milestone
Comments
Do we want to discuss this today? @jinujoseph |
sure , we should actually discuss #8394 in general |
Design Team Decision public interface IArgList : IOperation
{
List<IOperation> Values;
} If user uses __arglist(1, 2, 3), then they will have an IArgument with a VAlue that is this IArgList. The IArgList will point at 1, 2, 3. The Kind of the ArgumentKind of the IArgument will be a new value called ... ArgList |
Dupe of #8394 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area-Analyzers
Feature - IOperation
IOperation
_Product-level triaged
Resolution-Duplicate
The described behavior is tracked in another issue
Take the following example,
The __arglist is currently returned as:
I believe this can be solved by simply adding
ArgumentKind.ArgList
, and create such anIArgument
based on underlyingBoundArgListOperator
.The text was updated successfully, but these errors were encountered: