Ruby: Model more splat flow (alternative approach)

This commit is contained in:
Harry Maclean
2023-08-25 10:13:05 +01:00
parent 9ccd8cd248
commit 3c8683428b
3 changed files with 84 additions and 37 deletions

View File

@@ -48,7 +48,7 @@ positional(*args)
def posargs(p1, *posargs)
sink p1 # $ hasValueFlow=20 $ hasValueFlow=23 $ hasValueFlow=24
sink (posargs[0]) # $ hasValueFlow=22 $ hasValueFlow=21 $ MISSING: hasValueFlow=25
sink (posargs[0]) # $ hasValueFlow=22 $ hasValueFlow=21 $ hasValueFlow=25
sink (posargs[1])
end