File tree Expand file tree Collapse file tree 1 file changed +30
-10
lines changed Expand file tree Collapse file tree 1 file changed +30
-10
lines changed Original file line number Diff line number Diff line change 1
1
Pipescript
2
2
----------
3
+
4
+
5
+
6
+
3
7
### Synopsis
4
8
The Core PipeScript Transpiler
5
9
10
+
11
+
6
12
---
13
+
14
+
7
15
### Description
8
16
9
17
The Core PipeScript Transpiler.
@@ -12,7 +20,11 @@ This will convert various portions in the PowerShell Abstract Syntax Tree from t
12
20
13
21
It will run other converters as directed by the source code.
14
22
23
+
24
+
15
25
---
26
+
27
+
16
28
### Related Links
17
29
* [ .>Pipescript.Function] ( .>Pipescript.Function.md )
18
30
@@ -22,7 +34,11 @@ It will run other converters as directed by the source code.
22
34
23
35
24
36
37
+
38
+
25
39
---
40
+
41
+
26
42
### Examples
27
43
#### EXAMPLE 1
28
44
``` PowerShell
@@ -67,45 +83,49 @@ It will run other converters as directed by the source code.
67
83
} | .>PipeScript
68
84
```
69
85
86
+
87
+
70
88
---
89
+
90
+
71
91
### Parameters
72
92
#### ** ScriptBlock**
73
93
74
94
A ScriptBlock that will be transpiled.
75
95
76
96
77
97
78
- > ** Type** : ``` [ScriptBlock] ```
79
98
80
- > ** Required** : true
81
99
82
- > ** Position** : 1
83
100
84
- > ** PipelineInput** : true (ByValue)
101
+ | Type | Required| Position| PipelineInput |
102
+ | ---------------| --------| --------| --------------|
103
+ | ` [ScriptBlock] ` | true | 1 | true (ByValue)|
85
104
86
105
87
106
88
- ---
89
107
#### ** Transpiler**
90
108
91
109
One or more transpilation expressions that apply to the script block.
92
110
93
111
94
112
95
- > ** Type** : ``` [String[]] ```
96
113
97
- > ** Required** : false
98
114
99
- > ** Position** : named
100
115
101
- > ** PipelineInput** : false
116
+ | Type | Required| Position| PipelineInput|
117
+ | ------------| --------| --------| -------------|
118
+ | ` [String[]] ` | false | named | false |
119
+
120
+
102
121
103
122
104
123
105
124
---
125
+
126
+
106
127
### Syntax
107
128
``` PowerShell
108
129
Pipescript [-ScriptBlock] <ScriptBlock> [-Transpiler <String[]>] [<CommonParameters>]
109
130
```
110
- ---
111
131
You can’t perform that action at this time.
0 commit comments