LxLeChat / FlowChartCore

PowerShell Module Written in C# to create DOT graphs from PS Scripts
MIT License
19 stars 3 forks source link

Identification des scriptblocks #117

Open LxLeChat opened 3 years ago

LxLeChat commented 3 years ago

j'aimerai pouvoir représenter les trucs dans les scriptblock, ici un foreach-object car ça peut contenir beaucoup de code

$a = [scriptblock]::Create({if ( $x) {$true};$a= get-process | foreach { $_.name}})

$sc = $a.Ast.FindAll({$args[0] -is [System.Management.Automation.Language.ScriptBlockExpressionAst]},$true)
$named = $a.ast.Find({$args[0] -is [System.Management.Automation.Language.NamedBlockAst]},$false)
$sc.parent.parent.Parent.parent -eq $named

un début d'idée .. maintenant il faut être capable de bien représenter ça sur le graph ... donc remonter jusqu'a l'assignation de la variable.. à voir !