mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 15:26:00 +02:00
Disallow argument cascade in indexer
This commit is contained in:
parent
e5d70947d9
commit
c939ec1cf6
2 changed files with 4 additions and 3 deletions
|
@ -31,7 +31,8 @@ enum BfResolveArgsFlags
|
|||
BfResolveArgsFlag_DeferParamValues = 2, // We still evaluate but don't generate code until the method is selected (for SkipCall support)
|
||||
BfResolveArgsFlag_DeferParamEval = 4,
|
||||
BfResolveArgsFlag_AllowUnresolvedTypes = 8,
|
||||
BfResolveArgsFlag_InsideStringInterpolationAlloc = 0x10
|
||||
BfResolveArgsFlag_InsideStringInterpolationAlloc = 0x10,
|
||||
BfResolveArgsFlag_FromIndexer = 0x20
|
||||
};
|
||||
|
||||
enum BfResolveArgFlags
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue