File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ This directory and it's subdirectories contain syntax changes that enable common
5
5
| --------------------------------------------------------| ------------------------------------------------------------------|
6
6
| [ NamespacedAlias] ( NamespacedAlias.psx.ps1 ) | [ Declares a namespaced alias] ( NamespacedAlias.psx.ps1 ) |
7
7
| [ NamespacedFunction] ( NamespacedFunction.psx.ps1 ) | [ Namespaced functions] ( NamespacedFunction.psx.ps1 ) |
8
+ | [ NamespacedObject] ( NamespacedObject.psx.ps1 ) | [ Namespaced functions] ( NamespacedObject.psx.ps1 ) |
8
9
| [ ArrowOperator] ( ArrowOperator.psx.ps1 ) | [ Arrow Operator] ( ArrowOperator.psx.ps1 ) |
9
10
| [ ConditionalKeyword] ( ConditionalKeyword.psx.ps1 ) | [ Conditional Keyword Expansion] ( ConditionalKeyword.psx.ps1 ) |
10
11
| [ Dot] ( Dot.psx.ps1 ) | [ Dot Notation] ( Dot.psx.ps1 ) |
@@ -91,6 +92,16 @@ This directory and it's subdirectories contain syntax changes that enable common
91
92
}.Transpile()
92
93
~~~
93
94
95
+ ## NamespacedObject Example 1
96
+
97
+
98
+ ~~~ PowerShell
99
+ Invoke-PipeScript {
100
+ My Object Precious { $IsARing = $true; $BindsThemAll = $true }
101
+ My.Precious
102
+ }
103
+ ~~~
104
+
94
105
## ArrowOperator Example 1
95
106
96
107
You can’t perform that action at this time.
0 commit comments