This repository has been archived by the owner on May 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathAst.ps1
101 lines (85 loc) · 2.21 KB
/
Ast.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
function ConvertTo-Ast
{
[CmdletBinding()]
param([String]$String)
Write-Debug $String
$Tokens = $null
$Errors = $null
[System.Management.Automation.Language.Parser]::ParseInput($String, [ref]$Tokens, [ref]$Errors)
$Errors | % { Write-Error $_ }
}
function Get-Parameter
{
[CmdletBinding()]
param(
[Parameter(Mandatory, ValueFromPipeline=$true)]
[System.Management.Automation.Language.ScriptBlockAst]$ScriptBlock
)
$ParamBlock = Get-Ast -ParamBlock -Ast $ScriptBlock
Get-Ast -Parameter -Ast $ScriptBlock
}
function Get-Ast
{
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[System.Management.Automation.Language.Ast]$Ast,
[Switch]$Attribute,
[Switch]$ParamBlock,
[Switch]$Parameter,
[Switch]$TypeConstraint,
[Switch]$First,
[Switch]$SearchNestedBlocks,
[ScriptBlock]$Filter
)
$Predicate = {
$this = $args[0]
Write-Verbose "$this [$($this.GetType())]"
if ($Attribute -and $this -is ([System.Management.Automation.Language.AttributeAst]))
{
if ($Filter -eq $null -or $Filter.Invoke($this))
{
Write-Output $this
}
}
if ($ParamBlock -and $this -is ([System.Management.Automation.Language.ParamBlockAst]))
{
if ($Filter -eq $null -or $Filter.Invoke($this))
{
Write-Output $this
}
}
if ($Parameter -and $this -is ([System.Management.Automation.Language.ParameterAst]))
{
if ($Filter -eq $null -or $Filter.Invoke($this))
{
Write-Output $this
}
}
if ($TypeConstraint -and $this -is ([System.Management.Automation.Language.TypeConstraintAst]))
{
if ($Filter -eq $null -or $Filter.Invoke($this))
{
Write-Output $this
}
}
}
if ($First)
{
$Ast.Find($Predicate, $SearchNestedBlocks)
}
else
{
$Ast.FindAll($Predicate, $SearchNestedBlocks)
}
}
function Remove-Extent
{
[CmdletBinding()]
param([System.Management.Automation.Language.ScriptBlockAst]$ScriptBlock,
[System.Management.Automation.Language.IScriptExtent]$Extent)
$ScriptBlockString = $ScriptBlock.ToString()
Write-Verbose "Removing $($Extent.StartOffset) to $($Extent.EndOffset) in string of length $($ScriptBlockString.Length)"
$ScriptBlockString = $ScriptBlockString.Remove($Extent.StartOffset, $Extent.EndOffset - $Extent.StartOffset)
ConvertTo-Ast $ScriptBlockString
}