From 9b08293942edbe7d0b7f4f3e1b8a1df6eb42a453 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 3 Mar 2024 23:18:29 +0100 Subject: [PATCH] (#190, #191, #192, #193, #194, #195, #196, #197, #198, #199, #200, #201, #202) Connect TODOs with the issues, TODO cleanup --- .../settings/PowerShellJPanelComponent.java | 2 +- .../injection/PowerShellStringManipulator.kt | 6 +- .../PowerShellRenamePsiElementProcessor.kt | 4 +- .../ide/resolve/PowerShellResolveUtil.kt | 6 +- .../ide/resolve/PowerShellResolver.kt | 2 +- .../powershell/ide/run/PSExecutionUtil.kt | 4 +- .../ide/search/PowerShellComponentType.kt | 8 +- .../lang/lsp/client/PSLanguageClientImpl.kt | 4 +- .../EditorServicesLanguageHostStarter.kt | 4 +- .../languagehost/LanguageServerEndpoint.kt | 1 - .../PowerShellInvocationExpressionImpl.kt | 4 +- .../PowerShellQualifiedReferenceExpression.kt | 4 +- .../impl/PowerShellReferencePsiElementImpl.kt | 2 +- .../psi/impl/PowerShellTargetVariableImpl.kt | 2 - .../impl/PowerShellArrayClassTypeImpl.kt | 4 +- src/main/resources/PowerShell.bnf | 14 +- .../lang/PowerShellCodeInsightTest.kt | 4 +- .../testData/parser/PathExpression.ps1 | 6 +- .../testData/parser/PathExpression.txt | 296 +- .../resources/testData/parser/StdCmdlets.ps1 | 6 +- .../resources/testData/parser/StdCmdlets.txt | 8744 ++++++++--------- 21 files changed, 4556 insertions(+), 4571 deletions(-) diff --git a/src/main/java/com/intellij/plugin/powershell/lang/lsp/ide/settings/PowerShellJPanelComponent.java b/src/main/java/com/intellij/plugin/powershell/lang/lsp/ide/settings/PowerShellJPanelComponent.java index 44f0e9cb..a2357bab 100644 --- a/src/main/java/com/intellij/plugin/powershell/lang/lsp/ide/settings/PowerShellJPanelComponent.java +++ b/src/main/java/com/intellij/plugin/powershell/lang/lsp/ide/settings/PowerShellJPanelComponent.java @@ -179,7 +179,7 @@ private void setBundledPowerShellExtensionPath() throws ConfigurationException { } void fillPowerShellInfo(@NotNull LSPInitMain.PowerShellInfo powerShellInfo) { - setEditorServicesVersionLabelValue(powerShellInfo.getEditorServicesModuleVersion());//todo make consistent with 'setPowerShellExtensionPath' + setEditorServicesVersionLabelValue(powerShellInfo.getEditorServicesModuleVersion()); setPowerShellExtensionPath(powerShellInfo.getPowerShellExtensionPath()); setPowerShellExePath(powerShellInfo.getPowerShellExePath()); psExecutableChooserPanel.setPowerShellVersionLabelValue(powerShellInfo.getPowerShellVersion()); diff --git a/src/main/kotlin/com/intellij/plugin/powershell/ide/injection/PowerShellStringManipulator.kt b/src/main/kotlin/com/intellij/plugin/powershell/ide/injection/PowerShellStringManipulator.kt index f4053a9d..41693fb7 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/ide/injection/PowerShellStringManipulator.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/ide/injection/PowerShellStringManipulator.kt @@ -17,7 +17,7 @@ class PowerShellStringManipulator : AbstractElementManipulator { - if (element is PowerShellComponent && nameHasSubExpression(element)) {//todo it's workaround to resort to findUsage handler because default index does not contain needed tokens + if (element is PowerShellComponent && nameHasSubExpression(element)) {//TODO[#192]: it's workaround to resort to findUsage handler because default index does not contain needed tokens val findManager = FindManager.getInstance(element.getProject()) as? FindManagerImpl ?: return super.findReferences(element, searchScope, searchInCommentsAndStrings) val findUsagesManager = findManager.findUsagesManager @@ -32,4 +32,4 @@ class PowerShellRenamePsiElementProcessor : RenamePsiElementProcessor() { override fun getNewName(): String = nameSuggestionsField.enteredName } } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolveUtil.kt b/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolveUtil.kt index 90a4c589..8f2646d3 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolveUtil.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolveUtil.kt @@ -87,7 +87,7 @@ object PowerShellResolveUtil { } override fun visitArrayClassType(o: PowerShellArrayClassType): Boolean { - val componentType = o.getComponentType()//todo resolve to the actual array class (PS actually tries to resolve to component type in some cases) + val componentType = o.getComponentType()//TODO[#194]: resolve to the actual array class (PS actually tries to resolve to component type in some cases) return if (componentType is PowerShellClassType) { processClassType(componentType) } else { @@ -123,8 +123,8 @@ object PowerShellResolveUtil { val baseDeclaration = baseClass.resolve() if (baseDeclaration is PowerShellTypeDeclaration && processMembers(baseDeclaration, resolveProcessor)) return true } - //todo create fake PSI element for default constructor? + //TODO[#195]: create fake PSI element for default constructor? return resolveProcessor.getResult().isNotEmpty() } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolver.kt b/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolver.kt index 789f90ba..3c94a415 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolver.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/ide/resolve/PowerShellResolver.kt @@ -38,7 +38,7 @@ class PowerShellResolver : ResolveCache.AbstractResolver(protected val myRef: R) : PsiScopeProcessor { - private var myResult: PowerShellResolveResult? = null //todo should navigate to closest declaration (of function or variable) + private var myResult: PowerShellResolveResult? = null //TODO[#193]: should navigate to closest declaration (of function or variable) fun getResult(): PowerShellResolveResult? { return myResult diff --git a/src/main/kotlin/com/intellij/plugin/powershell/ide/run/PSExecutionUtil.kt b/src/main/kotlin/com/intellij/plugin/powershell/ide/run/PSExecutionUtil.kt index b024a055..f6a8be57 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/ide/run/PSExecutionUtil.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/ide/run/PSExecutionUtil.kt @@ -29,7 +29,7 @@ fun getModuleVersion(moduleBase: String, moduleName: String): String { val lines = FileUtil.loadLines(moduleFile) for (l in lines) { if (l.contains("ModuleVersion", true)) { - //todo can be not in one line + //TODO[#196]: can be not in one line return l.trimStart { c -> c != '=' }.substringAfter('=').trim().trim { c -> c == '\'' } } } @@ -48,4 +48,4 @@ fun join(vararg pathPart: String): String { fun getDefaultWorkingDirectory(): String { return EnvironmentUtil.getValue("HOME") ?: System.getProperty("user.home") ?: System.getProperty("user.dir") ?: "" -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/ide/search/PowerShellComponentType.kt b/src/main/kotlin/com/intellij/plugin/powershell/ide/search/PowerShellComponentType.kt index fdeafe84..9b20bb90 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/ide/search/PowerShellComponentType.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/ide/search/PowerShellComponentType.kt @@ -65,12 +65,6 @@ enum class PowerShellComponentType(icon: Icon) { CompletionItemKind.Enum -> ENUM CompletionItemKind.File -> GENERIC_FILE CompletionItemKind.Text -> TEXT -// CompletionItemKind.Color -> TODO() -// CompletionItemKind.Snippet -> TODO() -// CompletionItemKind.Keyword -> TODO() -// CompletionItemKind.Reference -> TODO() -// CompletionItemKind.Value -> TODO() -// CompletionItemKind.Unit -> TODO() else -> null } } @@ -83,4 +77,4 @@ enum class PowerShellComponentType(icon: Icon) { } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/client/PSLanguageClientImpl.kt b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/client/PSLanguageClientImpl.kt index c80e5833..bd167566 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/client/PSLanguageClientImpl.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/client/PSLanguageClientImpl.kt @@ -125,7 +125,7 @@ class PSLanguageClientImpl(private val project: Project) : LanguageClient, Endpo * to wait for an answer from the client. */ override fun showMessageRequest(requestParams: ShowMessageRequestParams): CompletableFuture { - TODO("Not implemented") + error("Not supported") } /** @@ -139,4 +139,4 @@ class PSLanguageClientImpl(private val project: Project) : LanguageClient, Endpo Unsupported, OK } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/EditorServicesLanguageHostStarter.kt b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/EditorServicesLanguageHostStarter.kt index f904dbd2..85075ca3 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/EditorServicesLanguageHostStarter.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/EditorServicesLanguageHostStarter.kt @@ -223,11 +223,10 @@ open class EditorServicesLanguageHostStarter(protected val myProject: Project) : psesVersionString = "-EditorServicesVersion '$psesVersionString'" } val bundledModulesPath = getPSExtensionModulesDir(psExtensionPath) - val additionalModules = ""//todo check if something could be added here val useReplSwitch = if (useConsoleRepl()) "-EnableConsoleRepl" else "" val logLevel = if (useConsoleRepl()) "Normal" else "Diagnostic" val args = "$psesVersionString -HostName '${myHostDetails.name}' -HostProfileId '${myHostDetails.profileId}' " + - "-HostVersion '${myHostDetails.version}' -AdditionalModules @($additionalModules) " + + "-HostVersion '${myHostDetails.version}' -AdditionalModules @() " + "-BundledModulesPath '$bundledModulesPath' $useReplSwitch " + "-LogLevel '$logLevel' -LogPath '$logPath' -SessionDetailsPath '$sessionDetailsPath' -FeatureFlags @() $splitInOutPipesSwitch" val preamble = @@ -286,7 +285,6 @@ open class EditorServicesLanguageHostStarter(protected val myProject: Project) : ) val fileWithSessionInfo = getSessionDetailsFile() - //todo retry starting language service process one more time if (!waitForSessionFile(fileWithSessionInfo)) { process.destroyForcibly() return null diff --git a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/LanguageServerEndpoint.kt b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/LanguageServerEndpoint.kt index 0d887e2b..66d4656d 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/LanguageServerEndpoint.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/lang/lsp/languagehost/LanguageServerEndpoint.kt @@ -93,7 +93,6 @@ class LanguageServerEndpoint( ensureStarted() val capabilities = getServerCapabilities() if (capabilities != null) { - //todo move it to LanguageHostConnectionManager (notify it when server initialized) languageServer?.workspaceService?.didChangeConfiguration(DEFAULT_DID_CHANGE_CONFIGURATION_PARAMS)//notify Editor Services to start REPL loop } } diff --git a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellInvocationExpressionImpl.kt b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellInvocationExpressionImpl.kt index 1484e989..9d240538 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellInvocationExpressionImpl.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellInvocationExpressionImpl.kt @@ -25,7 +25,7 @@ open class PowerShellInvocationExpressionImpl(node: ASTNode) : PowerShellQualifi override fun multiResolve(incompleteCode: Boolean): Array { if (isConstructorCall()) { - //todo where is the best place to implement resolve to a default constructor? + //TODO[#195] where is the best place to implement resolve to a default constructor? val qType = getQualifierType() if (qType is PowerShellClassType) { val qClass = qType.resolve() @@ -46,4 +46,4 @@ open class PowerShellInvocationExpressionImpl(node: ASTNode) : PowerShellQualifi private fun isConstructorCall() = PsNames.CONSTRUCTOR_CALL.equals(referenceName, true) -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellQualifiedReferenceExpression.kt b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellQualifiedReferenceExpression.kt index 5b3a5e6c..a13fa46a 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellQualifiedReferenceExpression.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellQualifiedReferenceExpression.kt @@ -23,7 +23,7 @@ abstract class PowerShellQualifiedReferenceExpression(node: ASTNode) : PowerShel } protected open fun inferTypeFromResolved(resolved: PowerShellComponent): PowerShellType { - //todo create function type and return function image here + //TODO[#198]: create function type and return function image here if (resolved is PowerShellAttributesHolder) resolved.getAttributeList().mapNotNull { it.typeLiteralExpression }.forEach { return it.getType() } return PowerShellType.UNKNOWN } @@ -52,4 +52,4 @@ abstract class PowerShellQualifiedReferenceExpression(node: ASTNode) : PowerShel return qualifier?.getType() } -} \ No newline at end of file +} diff --git a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellReferencePsiElementImpl.kt b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellReferencePsiElementImpl.kt index 889cb8d9..d2604199 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellReferencePsiElementImpl.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellReferencePsiElementImpl.kt @@ -24,7 +24,7 @@ abstract class PowerShellReferencePsiElementImpl(node: ASTNode) : PowerShellPsiE return PowerShellResolveUtil.toCandidateInfoArray2(elements) } - override fun getNameElement(): PsiElement? = findChildByClass(PowerShellIdentifier::class.java) //todo + override fun getNameElement(): PsiElement? = findChildByClass(PowerShellIdentifier::class.java) //TODO[#199]: override fun getElement(): PsiElement = this diff --git a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellTargetVariableImpl.kt b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellTargetVariableImpl.kt index 6a9dc993..5660796b 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellTargetVariableImpl.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/psi/impl/PowerShellTargetVariableImpl.kt @@ -28,7 +28,6 @@ open class PowerShellTargetVariableImpl(node: ASTNode) : PowerShellAbstractCompo override fun getType(): PowerShellType { //in case of $this variable resolves to class declaration if (isInstanceThis()) { - //todo where create it (need somewhere in PSI element getType())? val enclosingType = resolve() if (enclosingType is PowerShellTypeDeclaration) return PowerShellImmediateClassTypeImpl(enclosingType) } @@ -86,7 +85,6 @@ open class PowerShellTargetVariableImpl(node: ASTNode) : PowerShellAbstractCompo override fun getElement(): PsiElement = this override fun resolve(): PowerShellComponent? { - //todo resolve it in Resolver if (isInstanceThis()) return PsiTreeUtil.findFirstContext(this, false) { c -> c is PowerShellTypeDeclaration } as? PowerShellComponent val res = multiResolve(false) return if (res.isEmpty()) this else res[0].element diff --git a/src/main/kotlin/com/intellij/plugin/powershell/psi/types/impl/PowerShellArrayClassTypeImpl.kt b/src/main/kotlin/com/intellij/plugin/powershell/psi/types/impl/PowerShellArrayClassTypeImpl.kt index dc2027e6..8b48ee60 100644 --- a/src/main/kotlin/com/intellij/plugin/powershell/psi/types/impl/PowerShellArrayClassTypeImpl.kt +++ b/src/main/kotlin/com/intellij/plugin/powershell/psi/types/impl/PowerShellArrayClassTypeImpl.kt @@ -18,7 +18,7 @@ class PowerShellArrayClassTypeImpl(private val psiElement: PowerShellArrayTypeEl return "[" + getName() + "]" } - override fun resolve(): PowerShellComponent? {//todo resolve to the actual array class + override fun resolve(): PowerShellComponent? {//TODO[#194] resolve to the actual array class val componentType = getComponentType() return (componentType as? PowerShellClassType)?.resolve() } @@ -31,4 +31,4 @@ class PowerShellArrayClassTypeImpl(private val psiElement: PowerShellArrayTypeEl return psiElement.referenceTypeElement.referenceName ?: PsNames.UNNAMED } -} \ No newline at end of file +} diff --git a/src/main/resources/PowerShell.bnf b/src/main/resources/PowerShell.bnf index b95b439b..a1a86f81 100644 --- a/src/main/resources/PowerShell.bnf +++ b/src/main/resources/PowerShell.bnf @@ -168,7 +168,7 @@ node_block ::= node_token nls? command_argument_list+ private node_token ::= SIMPLE_ID //node_name ::= primary_expression | statement_rule | identifier //function_name -resource_block ::= resource_type nls? ( resource_name nls? resource_block_tail | resource_block_tail )//todo: or predicate is faster? +resource_block ::= resource_type nls? ( resource_name nls? resource_block_tail | resource_block_tail ) private resource_block_tail ::= LCURLY nls? resource_block_body? nls? RCURLY resource_block_body ::= hash_literal_body {elementType=block_body} @@ -395,14 +395,14 @@ command_call_expression ::= command_invocation_operator ( (command_module comman implements='com.intellij.plugin.powershell.psi.PowerShellQualifiedReferenceElement' mixin='com.intellij.plugin.powershell.psi.impl.PowerShellInvocationExpressionImpl' */ -private command_name_expression ::= path_expression | command_name//todo parse path_item where appropriate: path_item all bare identifiers including command_name +private command_name_expression ::= path_expression | command_name command_name ::= command_name_identifier //generic_token command_name_identifier ::= generic_token_with_sub_expr | generic_token_part //generic_token {elementType=identifier} -private generic_token_with_sub_expr ::= generic_token_with_subexpr_start statement_list? RP nws command_name //todo word index is not built by default words scanner +private generic_token_with_sub_expr ::= generic_token_with_subexpr_start statement_list? RP nws command_name private generic_token_with_subexpr_start ::= generic_token_part nws DS nws LP @@ -687,7 +687,7 @@ path_expression ::= path_item nws ( | (PATH_SEP nws path_item)+ //just container+ | (COLON|DS) (nws PATH_SEP)? // just drive | PATH_SEP //just PATH_SEP - ) | PATH_SEP (nws (path_expression | path_item))?//todo do not produce another path_expression node + ) | PATH_SEP (nws (path_expression | path_item))? | relative_path_item // just relative path path_item ::= path_item_name relative_path_item ::= relative_path @@ -700,8 +700,6 @@ private relative_path ::= DOT | DOT_DOT | PATH_SEP command_parameter ::= CMD_PARAMETER | binary_operator private binary_operator ::= OP_C | OP_NOT | OP_BNOT | OP_BAND | OP_BOR | OP_BXOR | OP_AND | OP_OR | OP_XOR verbatim_command_argument ::= VERBATIM_ARG_START VERBATIM_ARG_INPUT //(verbatim_command_string | AMP_ARG | generic_token_chars )+ -//private verbatim_command_string ::= EXPANDABLE_STRING //TODO: 02/09/17 variable substitution: - private primary_expression ::= value (invocation_expression | member_access_expression | element_access_expression | post_increment_expression | post_decrement_expression)* @@ -727,7 +725,7 @@ private expression_list_rule ::= expression ( nls? COMMA nls? expression)* left post_increment_expression ::= PP left post_decrement_expression ::= MM -private member_name ::= simple_name_reference //todo reference_expression ? (to be able to use 'function type' for it) +private member_name ::= simple_name_reference | string_literal_expression //-> | string_literal_with_subexpression | expression_with_unary_operator //prefix_op unary_expression // @@ -815,7 +813,7 @@ label ::= ':' nws label_name mixin="com.intellij.plugin.powershell.psi.impl.PowerShellAbstractComponent" implements="com.intellij.plugin.powershell.psi.PowerShellComponent" } -label_name ::= SIMPLE_ID// todo ALNUM? +label_name ::= SIMPLE_ID// TODO[#202]: ALNUM? {elementType=identifier} private nws ::= <> diff --git a/src/test/java/com/intellij/plugin/powershell/lang/PowerShellCodeInsightTest.kt b/src/test/java/com/intellij/plugin/powershell/lang/PowerShellCodeInsightTest.kt index f5974d71..b52f0e5b 100644 --- a/src/test/java/com/intellij/plugin/powershell/lang/PowerShellCodeInsightTest.kt +++ b/src/test/java/com/intellij/plugin/powershell/lang/PowerShellCodeInsightTest.kt @@ -128,7 +128,7 @@ class PowerShellCodeInsightTest : BasePlatformTestCase() { "}\n", "var array = {`\"1`\":`\"2`\"}`nfor (var obj in array) {`n obj.concat(`\"1234`\",`\"1212112`\",`\"22222`\")`n}`n") - //sub-expressions todo missingValue + //sub-expressions TODO[#197]: missingValue // checkInjectedText("This is a sample \"string\" with \$( Write-Output \"Sub-expression\" )end \$( Write-Output \"Sub-expression \" ) \"of\" string.", // "This is a sample `\"string`\" with \$( Write-Output \"Sub-expression\" )end \$( Write-Output \"Sub-expression \" ) `\"of`\" string.") @@ -250,4 +250,4 @@ class PowerShellCodeInsightTest : BasePlatformTestCase() { return PsiTreeUtil.findChildOfType(file, PowerShellStringLiteralExpression::class.java) ?: error("text='$nodeText'") } -} \ No newline at end of file +} diff --git a/src/test/resources/testData/parser/PathExpression.ps1 b/src/test/resources/testData/parser/PathExpression.ps1 index a57098a4..63347383 100644 --- a/src/test/resources/testData/parser/PathExpression.ps1 +++ b/src/test/resources/testData/parser/PathExpression.ps1 @@ -27,12 +27,12 @@ Not-Path-Arg 42d #Starting in Windows PowerShell 5.0, you can run Get-ItemPropertyValue -Path HKLM:\SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine -Name ApplicationBase -cd (Get-Location)\pip #command with 2 arguments: (Get-Location) and \pip todo: check it is really works +cd (Get-Location)\pip #command with 2 arguments: (Get-Location) and \pip TODO[#200]: check it is really works cd (Get-Location)\pip\(Get-Location)\ cd \pip cd \pip\wwe -#drive name in unc path +#drive name in unc path $acl = Get-Acl \$(hostname)\e$\"some folder" -foreach ($srv in (Get-ChildItem HKLM:\SYSTEM\CurrentControlSet\Services\ts*).Name) {} \ No newline at end of file +foreach ($srv in (Get-ChildItem HKLM:\SYSTEM\CurrentControlSet\Services\ts*).Name) {} diff --git a/src/test/resources/testData/parser/PathExpression.txt b/src/test/resources/testData/parser/PathExpression.txt index 953c08a6..b49bbff0 100644 --- a/src/test/resources/testData/parser/PathExpression.txt +++ b/src/test/resources/testData/parser/PathExpression.txt @@ -1,4 +1,4 @@ -FILE(0,1551) +FILE(0,1556) PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(0,26) PowerShellPathExpressionImplGen(PATH_EXPRESSION)(0,24) PowerShellPathItemImplGen(PATH_ITEM)(0,1) @@ -461,150 +461,150 @@ FILE(0,1551) PowerShellPathItemImplGen(PATH_ITEM)(1250,1253) PsiElement(SIMPLE_ID)('pip')(1250,1253) PsiWhiteSpace(' ')(1253,1254) - PsiComment(COMMENT)('#command with 2 arguments: (Get-Location) and \pip todo: check it is really works')(1254,1335) - PsiElement(NLS)('\n')(1335,1336) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1336,1373) - PowerShellCommandNameImplGen(COMMAND_NAME)(1336,1338) - PowerShellIdentifierImplGen(IDENTIFIER)(1336,1338) - PsiElement(SIMPLE_ID)('cd')(1336,1338) - PsiWhiteSpace(' ')(1338,1339) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1339,1353) - PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1339,1353) - PsiElement(()('(')(1339,1340) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1340,1352) - PowerShellCommandNameImplGen(COMMAND_NAME)(1340,1352) - PowerShellIdentifierImplGen(IDENTIFIER)(1340,1352) - PsiElement(GENERIC_ID_PART)('Get-Location')(1340,1352) - PsiElement())(')')(1352,1353) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1353,1358) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1353,1358) - PsiElement(\)('\')(1353,1354) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1354,1358) - PowerShellPathItemImplGen(PATH_ITEM)(1354,1357) - PsiElement(SIMPLE_ID)('pip')(1354,1357) - PsiElement(\)('\')(1357,1358) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1358,1372) - PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1358,1372) - PsiElement(()('(')(1358,1359) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1359,1371) - PowerShellCommandNameImplGen(COMMAND_NAME)(1359,1371) - PowerShellIdentifierImplGen(IDENTIFIER)(1359,1371) - PsiElement(GENERIC_ID_PART)('Get-Location')(1359,1371) - PsiElement())(')')(1371,1372) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1372,1373) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1372,1373) - PsiElement(\)('\')(1372,1373) - PsiElement(NLS)('\n')(1373,1374) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1374,1381) - PowerShellCommandNameImplGen(COMMAND_NAME)(1374,1376) - PowerShellIdentifierImplGen(IDENTIFIER)(1374,1376) - PsiElement(SIMPLE_ID)('cd')(1374,1376) - PsiWhiteSpace(' ')(1376,1377) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1377,1381) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1377,1381) - PsiElement(\)('\')(1377,1378) - PowerShellPathItemImplGen(PATH_ITEM)(1378,1381) - PsiElement(SIMPLE_ID)('pip')(1378,1381) - PsiElement(NLS)('\n')(1381,1382) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1382,1393) - PowerShellCommandNameImplGen(COMMAND_NAME)(1382,1384) - PowerShellIdentifierImplGen(IDENTIFIER)(1382,1384) - PsiElement(SIMPLE_ID)('cd')(1382,1384) - PsiWhiteSpace(' ')(1384,1385) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1385,1393) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1385,1393) - PsiElement(\)('\')(1385,1386) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1386,1393) - PowerShellPathItemImplGen(PATH_ITEM)(1386,1389) - PsiElement(SIMPLE_ID)('pip')(1386,1389) - PsiElement(\)('\')(1389,1390) - PowerShellPathItemImplGen(PATH_ITEM)(1390,1393) - PsiElement(SIMPLE_ID)('wwe')(1390,1393) - PsiElement(NLS)('\n\n')(1393,1395) - PsiComment(COMMENT)('#drive name in unc path ')(1395,1419) - PsiElement(NLS)('\n')(1419,1420) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1420,1464) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1420,1424) - PsiElement($)('$')(1420,1421) - PowerShellIdentifierImplGen(IDENTIFIER)(1421,1424) - PsiElement(SIMPLE_ID)('acl')(1421,1424) - PsiWhiteSpace(' ')(1424,1425) - PsiElement(=)('=')(1425,1426) - PsiWhiteSpace(' ')(1426,1427) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1427,1464) - PowerShellCommandNameImplGen(COMMAND_NAME)(1427,1434) - PowerShellIdentifierImplGen(IDENTIFIER)(1427,1434) - PsiElement(GENERIC_ID_PART)('Get-Acl')(1427,1434) - PsiWhiteSpace(' ')(1434,1435) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1435,1437) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1435,1437) - PowerShellPathItemImplGen(PATH_ITEM)(1435,1436) - PsiElement(\)('\')(1435,1436) - PsiElement($)('$')(1436,1437) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1437,1447) - PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1437,1447) - PsiElement(()('(')(1437,1438) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1438,1446) - PowerShellCommandNameImplGen(COMMAND_NAME)(1438,1446) - PowerShellIdentifierImplGen(IDENTIFIER)(1438,1446) - PsiElement(SIMPLE_ID)('hostname')(1438,1446) - PsiElement())(')')(1446,1447) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1447,1451) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1447,1451) - PsiElement(\)('\')(1447,1448) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1448,1451) - PowerShellPathItemImplGen(PATH_ITEM)(1448,1449) - PsiElement(SIMPLE_ID)('e')(1448,1449) - PsiElement($)('$')(1449,1450) - PsiElement(\)('\')(1450,1451) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1451,1464) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1451,1464) - PsiElement(DQ_OPEN)('"')(1451,1452) - PsiElement(EXPANDABLE_STRING_PART)('some folder')(1452,1463) - PsiElement(DQ_CLOSE)('"')(1463,1464) - PsiElement(NLS)('\n\n')(1464,1466) - PowerShellForeachStatementImplGen(FOREACH_STATEMENT)(1466,1551) - PsiElement(foreach)('foreach')(1466,1473) - PsiWhiteSpace(' ')(1473,1474) - PsiElement(()('(')(1474,1475) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1475,1479) - PsiElement($)('$')(1475,1476) - PowerShellIdentifierImplGen(IDENTIFIER)(1476,1479) - PsiElement(SIMPLE_ID)('srv')(1476,1479) - PsiWhiteSpace(' ')(1479,1480) - PsiElement(in)('in')(1480,1482) - PsiWhiteSpace(' ')(1482,1483) - PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(1483,1547) - PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1483,1542) - PsiElement(()('(')(1483,1484) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1484,1541) - PowerShellCommandNameImplGen(COMMAND_NAME)(1484,1497) - PowerShellIdentifierImplGen(IDENTIFIER)(1484,1497) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(1484,1497) - PsiWhiteSpace(' ')(1497,1498) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1498,1541) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1498,1541) - PowerShellPathItemImplGen(PATH_ITEM)(1498,1502) - PsiElement(SIMPLE_ID)('HKLM')(1498,1502) - PsiElement(:)(':')(1502,1503) - PsiElement(\)('\')(1503,1504) - PowerShellPathItemImplGen(PATH_ITEM)(1504,1510) - PsiElement(SIMPLE_ID)('SYSTEM')(1504,1510) - PsiElement(\)('\')(1510,1511) - PowerShellPathItemImplGen(PATH_ITEM)(1511,1528) - PsiElement(SIMPLE_ID)('CurrentControlSet')(1511,1528) - PsiElement(\)('\')(1528,1529) - PowerShellPathItemImplGen(PATH_ITEM)(1529,1537) - PsiElement(SIMPLE_ID)('Services')(1529,1537) - PsiElement(\)('\')(1537,1538) - PowerShellPathItemImplGen(PATH_ITEM)(1538,1541) - PsiElement(SIMPLE_ID)('ts')(1538,1540) - PsiElement(*)('*')(1540,1541) - PsiElement())(')')(1541,1542) - PsiElement(.)('.')(1542,1543) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1543,1547) - PsiElement(SIMPLE_ID)('Name')(1543,1547) - PsiElement())(')')(1547,1548) - PsiWhiteSpace(' ')(1548,1549) - PsiElement({)('{')(1549,1550) - PsiElement(})('}')(1550,1551) \ No newline at end of file + PsiComment(COMMENT)('#command with 2 arguments: (Get-Location) and \pip TODO[#200]: check it is really works')(1254,1341) + PsiElement(NLS)('\n')(1341,1342) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1342,1379) + PowerShellCommandNameImplGen(COMMAND_NAME)(1342,1344) + PowerShellIdentifierImplGen(IDENTIFIER)(1342,1344) + PsiElement(SIMPLE_ID)('cd')(1342,1344) + PsiWhiteSpace(' ')(1344,1345) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1345,1359) + PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1345,1359) + PsiElement(()('(')(1345,1346) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1346,1358) + PowerShellCommandNameImplGen(COMMAND_NAME)(1346,1358) + PowerShellIdentifierImplGen(IDENTIFIER)(1346,1358) + PsiElement(GENERIC_ID_PART)('Get-Location')(1346,1358) + PsiElement())(')')(1358,1359) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1359,1364) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1359,1364) + PsiElement(\)('\')(1359,1360) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1360,1364) + PowerShellPathItemImplGen(PATH_ITEM)(1360,1363) + PsiElement(SIMPLE_ID)('pip')(1360,1363) + PsiElement(\)('\')(1363,1364) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1364,1378) + PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1364,1378) + PsiElement(()('(')(1364,1365) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1365,1377) + PowerShellCommandNameImplGen(COMMAND_NAME)(1365,1377) + PowerShellIdentifierImplGen(IDENTIFIER)(1365,1377) + PsiElement(GENERIC_ID_PART)('Get-Location')(1365,1377) + PsiElement())(')')(1377,1378) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1378,1379) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1378,1379) + PsiElement(\)('\')(1378,1379) + PsiElement(NLS)('\n')(1379,1380) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1380,1387) + PowerShellCommandNameImplGen(COMMAND_NAME)(1380,1382) + PowerShellIdentifierImplGen(IDENTIFIER)(1380,1382) + PsiElement(SIMPLE_ID)('cd')(1380,1382) + PsiWhiteSpace(' ')(1382,1383) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1383,1387) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1383,1387) + PsiElement(\)('\')(1383,1384) + PowerShellPathItemImplGen(PATH_ITEM)(1384,1387) + PsiElement(SIMPLE_ID)('pip')(1384,1387) + PsiElement(NLS)('\n')(1387,1388) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1388,1399) + PowerShellCommandNameImplGen(COMMAND_NAME)(1388,1390) + PowerShellIdentifierImplGen(IDENTIFIER)(1388,1390) + PsiElement(SIMPLE_ID)('cd')(1388,1390) + PsiWhiteSpace(' ')(1390,1391) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1391,1399) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1391,1399) + PsiElement(\)('\')(1391,1392) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1392,1399) + PowerShellPathItemImplGen(PATH_ITEM)(1392,1395) + PsiElement(SIMPLE_ID)('pip')(1392,1395) + PsiElement(\)('\')(1395,1396) + PowerShellPathItemImplGen(PATH_ITEM)(1396,1399) + PsiElement(SIMPLE_ID)('wwe')(1396,1399) + PsiElement(NLS)('\n\n')(1399,1401) + PsiComment(COMMENT)('#drive name in unc path')(1401,1424) + PsiElement(NLS)('\n')(1424,1425) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1425,1469) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1425,1429) + PsiElement($)('$')(1425,1426) + PowerShellIdentifierImplGen(IDENTIFIER)(1426,1429) + PsiElement(SIMPLE_ID)('acl')(1426,1429) + PsiWhiteSpace(' ')(1429,1430) + PsiElement(=)('=')(1430,1431) + PsiWhiteSpace(' ')(1431,1432) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1432,1469) + PowerShellCommandNameImplGen(COMMAND_NAME)(1432,1439) + PowerShellIdentifierImplGen(IDENTIFIER)(1432,1439) + PsiElement(GENERIC_ID_PART)('Get-Acl')(1432,1439) + PsiWhiteSpace(' ')(1439,1440) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1440,1442) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1440,1442) + PowerShellPathItemImplGen(PATH_ITEM)(1440,1441) + PsiElement(\)('\')(1440,1441) + PsiElement($)('$')(1441,1442) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1442,1452) + PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1442,1452) + PsiElement(()('(')(1442,1443) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1443,1451) + PowerShellCommandNameImplGen(COMMAND_NAME)(1443,1451) + PowerShellIdentifierImplGen(IDENTIFIER)(1443,1451) + PsiElement(SIMPLE_ID)('hostname')(1443,1451) + PsiElement())(')')(1451,1452) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1452,1456) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1452,1456) + PsiElement(\)('\')(1452,1453) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1453,1456) + PowerShellPathItemImplGen(PATH_ITEM)(1453,1454) + PsiElement(SIMPLE_ID)('e')(1453,1454) + PsiElement($)('$')(1454,1455) + PsiElement(\)('\')(1455,1456) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1456,1469) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1456,1469) + PsiElement(DQ_OPEN)('"')(1456,1457) + PsiElement(EXPANDABLE_STRING_PART)('some folder')(1457,1468) + PsiElement(DQ_CLOSE)('"')(1468,1469) + PsiElement(NLS)('\n\n')(1469,1471) + PowerShellForeachStatementImplGen(FOREACH_STATEMENT)(1471,1556) + PsiElement(foreach)('foreach')(1471,1478) + PsiWhiteSpace(' ')(1478,1479) + PsiElement(()('(')(1479,1480) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1480,1484) + PsiElement($)('$')(1480,1481) + PowerShellIdentifierImplGen(IDENTIFIER)(1481,1484) + PsiElement(SIMPLE_ID)('srv')(1481,1484) + PsiWhiteSpace(' ')(1484,1485) + PsiElement(in)('in')(1485,1487) + PsiWhiteSpace(' ')(1487,1488) + PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(1488,1552) + PowerShellParenthesizedExpressionImplGen(PARENTHESIZED_EXPRESSION)(1488,1547) + PsiElement(()('(')(1488,1489) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1489,1546) + PowerShellCommandNameImplGen(COMMAND_NAME)(1489,1502) + PowerShellIdentifierImplGen(IDENTIFIER)(1489,1502) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(1489,1502) + PsiWhiteSpace(' ')(1502,1503) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1503,1546) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(1503,1546) + PowerShellPathItemImplGen(PATH_ITEM)(1503,1507) + PsiElement(SIMPLE_ID)('HKLM')(1503,1507) + PsiElement(:)(':')(1507,1508) + PsiElement(\)('\')(1508,1509) + PowerShellPathItemImplGen(PATH_ITEM)(1509,1515) + PsiElement(SIMPLE_ID)('SYSTEM')(1509,1515) + PsiElement(\)('\')(1515,1516) + PowerShellPathItemImplGen(PATH_ITEM)(1516,1533) + PsiElement(SIMPLE_ID)('CurrentControlSet')(1516,1533) + PsiElement(\)('\')(1533,1534) + PowerShellPathItemImplGen(PATH_ITEM)(1534,1542) + PsiElement(SIMPLE_ID)('Services')(1534,1542) + PsiElement(\)('\')(1542,1543) + PowerShellPathItemImplGen(PATH_ITEM)(1543,1546) + PsiElement(SIMPLE_ID)('ts')(1543,1545) + PsiElement(*)('*')(1545,1546) + PsiElement())(')')(1546,1547) + PsiElement(.)('.')(1547,1548) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1548,1552) + PsiElement(SIMPLE_ID)('Name')(1548,1552) + PsiElement())(')')(1552,1553) + PsiWhiteSpace(' ')(1553,1554) + PsiElement({)('{')(1554,1555) + PsiElement(})('}')(1555,1556) diff --git a/src/test/resources/testData/parser/StdCmdlets.ps1 b/src/test/resources/testData/parser/StdCmdlets.ps1 index 9e9a2e13..c0febe6e 100644 --- a/src/test/resources/testData/parser/StdCmdlets.ps1 +++ b/src/test/resources/testData/parser/StdCmdlets.ps1 @@ -10,9 +10,9 @@ $a = $a | Add-Member -MemberType NoteProperty -Name StringUse -Value Display -Pa Clear-Content J:\Files\Test*.* #This cmdlet deletes the value of one or more items, but it does not delete them. -#Clear-Item Variable:Count #todo no need to specify '$' for the variable? +#Clear-Item Variable:Count #TODO[#201]: no need to specify '$' for the variable? Clear-Item $Variable:Count -Clear-Item $Alias:log* -Include *1* -Exclude *3* #todo SIMPLE_ID include '*'? +Clear-Item $Alias:log* -Include *1* -Exclude *3* #Deletes the value of one or more existing variables. Clear-Variable 'Count10?' -Exclude 'Count101','Count102' @@ -312,4 +312,4 @@ Test-Path -Path Env:Path #Creates a filter to determine which input objects are be passed along a command pipeline. Get-ChildItem "E:\Files\*.*" | Where-Object { $_.Length -le 1000 } Get-ChildItem "E:\Files\*.*" | Where-Object Length –eq 0 -Get-ChildItem "E:\Files\*.*" | Where-Object IsReadOnly \ No newline at end of file +Get-ChildItem "E:\Files\*.*" | Where-Object IsReadOnly diff --git a/src/test/resources/testData/parser/StdCmdlets.txt b/src/test/resources/testData/parser/StdCmdlets.txt index e2e663ba..c956abfa 100644 --- a/src/test/resources/testData/parser/StdCmdlets.txt +++ b/src/test/resources/testData/parser/StdCmdlets.txt @@ -1,4 +1,4 @@ -FILE(0,13767) +FILE(0,13745) PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(0,49) PowerShellCommandNameImplGen(COMMAND_NAME)(0,11) PowerShellIdentifierImplGen(IDENTIFIER)(0,11) @@ -187,4428 +187,4426 @@ FILE(0,13767) PsiElement(NLS)('\n\n')(508,510) PsiComment(COMMENT)('#This cmdlet deletes the value of one or more items, but it does not delete them.')(510,591) PsiElement(NLS)('\n')(591,592) - PsiComment(COMMENT)('#Clear-Item Variable:Count #todo no need to specify '$' for the variable?')(592,665) - PsiElement(NLS)('\n')(665,666) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(666,692) - PowerShellCommandNameImplGen(COMMAND_NAME)(666,676) - PowerShellIdentifierImplGen(IDENTIFIER)(666,676) - PsiElement(GENERIC_ID_PART)('Clear-Item')(666,676) - PsiWhiteSpace(' ')(676,677) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(677,692) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(677,692) - PsiElement($)('$')(677,678) - PsiElement(SIMPLE_ID)('Variable')(678,686) - PsiElement(:)(':')(686,687) - PowerShellIdentifierImplGen(IDENTIFIER)(687,692) - PsiElement(SIMPLE_ID)('Count')(687,692) - PsiElement(NLS)('\n')(692,693) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(693,741) - PowerShellCommandNameImplGen(COMMAND_NAME)(693,703) - PowerShellIdentifierImplGen(IDENTIFIER)(693,703) - PsiElement(GENERIC_ID_PART)('Clear-Item')(693,703) - PsiWhiteSpace(' ')(703,704) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(704,714) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(704,714) - PsiElement($)('$')(704,705) - PsiElement(SIMPLE_ID)('Alias')(705,710) - PsiElement(:)(':')(710,711) - PowerShellIdentifierImplGen(IDENTIFIER)(711,714) - PsiElement(SIMPLE_ID)('log')(711,714) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(714,715) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(714,715) - PsiElement(*)('*')(714,715) - PsiWhiteSpace(' ')(715,716) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(716,724) - PsiElement(CMD_PARAMETER)('-Include')(716,724) - PsiWhiteSpace(' ')(724,725) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(725,728) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(725,728) - PsiElement(*)('*')(725,726) - PsiElement(DEC_INTEGER)('1')(726,727) - PsiElement(*)('*')(727,728) - PsiWhiteSpace(' ')(728,729) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(729,737) - PsiElement(CMD_PARAMETER)('-Exclude')(729,737) - PsiWhiteSpace(' ')(737,738) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(738,741) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(738,741) - PsiElement(*)('*')(738,739) - PsiElement(DEC_INTEGER)('3')(739,740) - PsiElement(*)('*')(740,741) - PsiWhiteSpace(' ')(741,742) - PsiComment(COMMENT)('#todo SIMPLE_ID include '*'?')(742,770) - PsiElement(NLS)('\n\n')(770,772) - PsiComment(COMMENT)('#Deletes the value of one or more existing variables.')(772,825) - PsiElement(NLS)('\n')(825,826) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(826,882) - PowerShellCommandNameImplGen(COMMAND_NAME)(826,840) - PowerShellIdentifierImplGen(IDENTIFIER)(826,840) - PsiElement(GENERIC_ID_PART)('Clear-Variable')(826,840) - PsiWhiteSpace(' ')(840,841) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(841,851) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(841,851) - PsiElement(VERBATIM_STRING)(''Count10?'')(841,851) - PsiWhiteSpace(' ')(851,852) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(852,860) - PsiElement(CMD_PARAMETER)('-Exclude')(852,860) - PsiWhiteSpace(' ')(860,861) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(861,871) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(861,871) - PsiElement(VERBATIM_STRING)(''Count101'')(861,871) - PsiElement(,)(',')(871,872) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(872,882) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(872,882) - PsiElement(VERBATIM_STRING)(''Count102'')(872,882) - PsiElement(NLS)('\n\n')(882,884) - PsiComment(COMMENT)('#Compares two sets of objects.')(884,914) - PsiElement(NLS)('\n')(914,915) - PsiComment(COMMENT)('#File1.txt contains the records red, green, yellow, blue, and black. File1.txt contains the records red, Green, blue, Black, and white.')(915,1050) - PsiElement(NLS)('\n')(1050,1051) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1051,1160) - PowerShellCommandNameImplGen(COMMAND_NAME)(1051,1065) - PowerShellIdentifierImplGen(IDENTIFIER)(1051,1065) - PsiElement(GENERIC_ID_PART)('Compare-Object')(1051,1065) - PsiWhiteSpace(' ')(1065,1066) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1066,1082) - PsiElement(CMD_PARAMETER)('-ReferenceObject')(1066,1082) - PsiWhiteSpace(' ')(1082,1083) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1083,1107) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1083,1107) - PsiElement($)('$')(1083,1084) - PsiElement(()('(')(1084,1085) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1085,1106) - PowerShellCommandNameImplGen(COMMAND_NAME)(1085,1096) - PowerShellIdentifierImplGen(IDENTIFIER)(1085,1096) - PsiElement(GENERIC_ID_PART)('Get-Content')(1085,1096) - PsiWhiteSpace(' ')(1096,1097) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1097,1106) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1097,1106) - PsiElement(SIMPLE_ID)('File1')(1097,1102) - PsiElement(.)('.')(1102,1103) - PsiElement(SIMPLE_ID)('txt')(1103,1106) - PsiElement())(')')(1106,1107) - PsiWhiteSpace(' ')(1107,1108) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1108,1125) - PsiElement(CMD_PARAMETER)('-DifferenceObject')(1108,1125) - PsiWhiteSpace(' ')(1125,1126) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1126,1150) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1126,1150) - PsiElement($)('$')(1126,1127) - PsiElement(()('(')(1127,1128) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1128,1149) - PowerShellCommandNameImplGen(COMMAND_NAME)(1128,1139) - PowerShellIdentifierImplGen(IDENTIFIER)(1128,1139) - PsiElement(GENERIC_ID_PART)('Get-Content')(1128,1139) - PsiWhiteSpace(' ')(1139,1140) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1140,1149) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1140,1149) - PsiElement(SIMPLE_ID)('File2')(1140,1145) - PsiElement(.)('.')(1145,1146) - PsiElement(SIMPLE_ID)('txt')(1146,1149) - PsiElement())(')')(1149,1150) - PsiWhiteSpace(' ')(1150,1151) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1151,1160) - PsiElement(CMD_PARAMETER)('-PassThru')(1151,1160) - PsiElement(NLS)('\n')(1160,1161) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1161,1285) - PowerShellCommandNameImplGen(COMMAND_NAME)(1161,1175) - PowerShellIdentifierImplGen(IDENTIFIER)(1161,1175) - PsiElement(GENERIC_ID_PART)('Compare-Object')(1161,1175) - PsiWhiteSpace(' ')(1175,1176) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1176,1192) - PsiElement(CMD_PARAMETER)('-ReferenceObject')(1176,1192) - PsiWhiteSpace(' ')(1192,1193) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1193,1217) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1193,1217) - PsiElement($)('$')(1193,1194) - PsiElement(()('(')(1194,1195) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1195,1216) - PowerShellCommandNameImplGen(COMMAND_NAME)(1195,1206) - PowerShellIdentifierImplGen(IDENTIFIER)(1195,1206) - PsiElement(GENERIC_ID_PART)('Get-Content')(1195,1206) - PsiWhiteSpace(' ')(1206,1207) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1207,1216) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1207,1216) - PsiElement(SIMPLE_ID)('File1')(1207,1212) - PsiElement(.)('.')(1212,1213) - PsiElement(SIMPLE_ID)('txt')(1213,1216) - PsiElement())(')')(1216,1217) - PsiWhiteSpace(' ')(1217,1218) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1218,1235) - PsiElement(CMD_PARAMETER)('-DifferenceObject')(1218,1235) - PsiWhiteSpace(' ')(1235,1236) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1236,1260) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1236,1260) - PsiElement($)('$')(1236,1237) - PsiElement(()('(')(1237,1238) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1238,1259) - PowerShellCommandNameImplGen(COMMAND_NAME)(1238,1249) - PowerShellIdentifierImplGen(IDENTIFIER)(1238,1249) - PsiElement(GENERIC_ID_PART)('Get-Content')(1238,1249) - PsiWhiteSpace(' ')(1249,1250) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1250,1259) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1250,1259) - PsiElement(SIMPLE_ID)('File2')(1250,1255) - PsiElement(.)('.')(1255,1256) - PsiElement(SIMPLE_ID)('txt')(1256,1259) - PsiElement())(')')(1259,1260) - PsiWhiteSpace(' ')(1260,1261) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1261,1270) - PsiElement(CMD_PARAMETER)('-PassThru')(1261,1270) - PsiWhiteSpace(' ')(1270,1271) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1271,1285) - PsiElement(CMD_PARAMETER)('-CaseSensitive')(1271,1285) - PsiElement(NLS)('\n')(1285,1286) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1286,1427) - PowerShellCommandNameImplGen(COMMAND_NAME)(1286,1300) - PowerShellIdentifierImplGen(IDENTIFIER)(1286,1300) - PsiElement(GENERIC_ID_PART)('Compare-Object')(1286,1300) - PsiWhiteSpace(' ')(1300,1301) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1301,1317) - PsiElement(CMD_PARAMETER)('-ReferenceObject')(1301,1317) - PsiWhiteSpace(' ')(1317,1318) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1318,1342) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1318,1342) - PsiElement($)('$')(1318,1319) - PsiElement(()('(')(1319,1320) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1320,1341) - PowerShellCommandNameImplGen(COMMAND_NAME)(1320,1331) - PowerShellIdentifierImplGen(IDENTIFIER)(1320,1331) - PsiElement(GENERIC_ID_PART)('Get-Content')(1320,1331) - PsiWhiteSpace(' ')(1331,1332) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1332,1341) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1332,1341) - PsiElement(SIMPLE_ID)('File1')(1332,1337) - PsiElement(.)('.')(1337,1338) - PsiElement(SIMPLE_ID)('txt')(1338,1341) - PsiElement())(')')(1341,1342) - PsiWhiteSpace(' ')(1342,1343) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1343,1360) - PsiElement(CMD_PARAMETER)('-DifferenceObject')(1343,1360) - PsiWhiteSpace(' ')(1360,1361) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1361,1385) - PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1361,1385) - PsiElement($)('$')(1361,1362) - PsiElement(()('(')(1362,1363) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1363,1384) - PowerShellCommandNameImplGen(COMMAND_NAME)(1363,1374) - PowerShellIdentifierImplGen(IDENTIFIER)(1363,1374) - PsiElement(GENERIC_ID_PART)('Get-Content')(1363,1374) - PsiWhiteSpace(' ')(1374,1375) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1375,1384) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1375,1384) - PsiElement(SIMPLE_ID)('File2')(1375,1380) - PsiElement(.)('.')(1380,1381) - PsiElement(SIMPLE_ID)('txt')(1381,1384) - PsiElement())(')')(1384,1385) - PsiWhiteSpace(' ')(1385,1386) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1386,1395) - PsiElement(CMD_PARAMETER)('-PassThru')(1386,1395) - PsiWhiteSpace(' ')(1395,1396) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1396,1413) - PsiElement(CMD_PARAMETER)('-ExcludeDifferent')(1396,1413) - PsiWhiteSpace(' ')(1413,1414) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1414,1427) - PsiElement(CMD_PARAMETER)('-IncludeEqual')(1414,1427) - PsiElement(NLS)('\n\n')(1427,1429) - PsiComment(COMMENT)('#Converts a string containing one or more key/value pairs to a hash table.')(1429,1503) - PsiElement(NLS)('\n')(1503,1504) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1504,1653) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1504,1508) - PsiElement($)('$')(1504,1505) - PowerShellIdentifierImplGen(IDENTIFIER)(1505,1508) - PsiElement(SIMPLE_ID)('str')(1505,1508) - PsiWhiteSpace(' ')(1508,1509) - PsiElement(=)('=')(1509,1510) - PsiWhiteSpace(' ')(1510,1511) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1511,1653) - PsiElement(VERBATIM_HERE_STRING)('@'\nMsg1 = The string parameter is required.\nMsg2 = Credentials are required for this command.\nMsg3 = The specified variable does not exist.\n'@')(1511,1653) - PsiElement(NLS)('\n')(1653,1654) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1654,1698) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1654,1656) - PsiElement($)('$')(1654,1655) - PowerShellIdentifierImplGen(IDENTIFIER)(1655,1656) - PsiElement(SIMPLE_ID)('v')(1655,1656) - PsiWhiteSpace(' ')(1656,1657) - PsiElement(=)('=')(1657,1658) - PsiWhiteSpace(' ')(1658,1659) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1659,1698) - PowerShellCommandNameImplGen(COMMAND_NAME)(1659,1681) - PowerShellIdentifierImplGen(IDENTIFIER)(1659,1681) - PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1659,1681) - PsiWhiteSpace(' ')(1681,1682) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1682,1693) - PsiElement(CMD_PARAMETER)('-StringData')(1682,1693) - PsiWhiteSpace(' ')(1693,1694) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1694,1698) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1694,1698) - PsiElement($)('$')(1694,1695) - PowerShellIdentifierImplGen(IDENTIFIER)(1695,1698) - PsiElement(SIMPLE_ID)('str')(1695,1698) - PsiElement(NLS)('\n')(1698,1699) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1699,1733) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1699,1701) - PsiElement($)('$')(1699,1700) - PowerShellIdentifierImplGen(IDENTIFIER)(1700,1701) - PsiElement(SIMPLE_ID)('v')(1700,1701) - PsiWhiteSpace(' ')(1701,1702) - PsiElement(=)('=')(1702,1703) - PsiWhiteSpace(' ')(1703,1704) - PowerShellPipelineTailImplGen(PIPELINE)(1704,1733) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1704,1708) - PsiElement($)('$')(1704,1705) - PowerShellIdentifierImplGen(IDENTIFIER)(1705,1708) - PsiElement(SIMPLE_ID)('str')(1705,1708) - PsiWhiteSpace(' ')(1708,1709) - PsiElement(|)('|')(1709,1710) - PsiWhiteSpace(' ')(1710,1711) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1711,1733) - PowerShellCommandNameImplGen(COMMAND_NAME)(1711,1733) - PowerShellIdentifierImplGen(IDENTIFIER)(1711,1733) - PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1711,1733) - PsiElement(NLS)('\n')(1733,1734) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1734,1863) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1734,1736) - PsiElement($)('$')(1734,1735) - PowerShellIdentifierImplGen(IDENTIFIER)(1735,1736) - PsiElement(SIMPLE_ID)('v')(1735,1736) - PsiWhiteSpace(' ')(1736,1737) - PsiElement(=)('=')(1737,1738) - PsiWhiteSpace(' ')(1738,1739) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1739,1863) - PowerShellCommandNameImplGen(COMMAND_NAME)(1739,1761) - PowerShellIdentifierImplGen(IDENTIFIER)(1739,1761) - PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1739,1761) - PsiWhiteSpace(' ')(1761,1762) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1762,1773) - PsiElement(CMD_PARAMETER)('-StringData')(1762,1773) - PsiWhiteSpace(' ')(1773,1774) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1774,1863) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1774,1863) - PsiElement(VERBATIM_HERE_STRING)('@'\n Name = Disks.ps1\n # Category is optional.\n Category = Storage\n Cost = Free\n'@')(1774,1863) - PsiElement(NLS)('\n')(1863,1864) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1864,1932) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1864,1866) - PsiElement($)('$')(1864,1865) - PowerShellIdentifierImplGen(IDENTIFIER)(1865,1866) - PsiElement(SIMPLE_ID)('v')(1865,1866) - PsiWhiteSpace(' ')(1866,1867) - PsiElement(=)('=')(1867,1868) - PsiWhiteSpace(' ')(1868,1869) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1869,1932) - PowerShellCommandNameImplGen(COMMAND_NAME)(1869,1891) - PowerShellIdentifierImplGen(IDENTIFIER)(1869,1891) - PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1869,1891) - PsiWhiteSpace(' ')(1891,1892) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1892,1903) - PsiElement(CMD_PARAMETER)('-StringData')(1892,1903) - PsiWhiteSpace(' ')(1903,1904) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1904,1932) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1904,1932) - PsiElement(DQ_OPEN)('"')(1904,1905) - PsiElement(EXPANDABLE_STRING_PART)('Top = Red `n Bottom = Blue')(1905,1931) - PsiElement(DQ_CLOSE)('"')(1931,1932) - PsiElement(NLS)('\n\n')(1932,1934) - PsiComment(COMMENT)('#Converts a path (§3.4) from a PowerShell path to a PowerShell provider path.')(1934,2011) - PsiElement(NLS)('\n')(2011,2012) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2012,2034) - PowerShellCommandNameImplGen(COMMAND_NAME)(2012,2024) - PowerShellIdentifierImplGen(IDENTIFIER)(2012,2024) - PsiElement(GENERIC_ID_PART)('Convert-Path')(2012,2024) - PsiWhiteSpace(' ')(2024,2025) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2025,2030) - PsiElement(CMD_PARAMETER)('-Path')(2025,2030) - PsiWhiteSpace(' ')(2030,2031) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2031,2033) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2031,2033) - PowerShellPathItemImplGen(PATH_ITEM)(2031,2032) - PsiElement(SIMPLE_ID)('E')(2031,2032) - PsiElement(:)(':')(2032,2033) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2033,2034) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2033,2034) - PowerShellPathItemImplGen(PATH_ITEM)(2033,2034) - PsiElement(.)('.')(2033,2034) - PsiElement(NLS)('\n')(2034,2035) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2035,2068) - PowerShellCommandNameImplGen(COMMAND_NAME)(2035,2047) - PowerShellIdentifierImplGen(IDENTIFIER)(2035,2047) - PsiElement(GENERIC_ID_PART)('Convert-Path')(2035,2047) - PsiWhiteSpace(' ')(2047,2048) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2048,2053) - PsiElement(CMD_PARAMETER)('-Path')(2048,2053) - PsiWhiteSpace(' ')(2053,2054) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2054,2056) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2054,2056) - PowerShellPathItemImplGen(PATH_ITEM)(2054,2055) - PsiElement(SIMPLE_ID)('E')(2054,2055) - PsiElement(:)(':')(2055,2056) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2056,2057) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2056,2057) - PowerShellPathItemImplGen(PATH_ITEM)(2056,2057) - PsiElement(.)('.')(2056,2057) - PsiElement(,)(',')(2057,2058) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2058,2068) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2058,2068) - PowerShellPathItemImplGen(PATH_ITEM)(2058,2059) - PsiElement(SIMPLE_ID)('G')(2058,2059) - PsiElement(:)(':')(2059,2060) - PsiElement(\)('\')(2060,2061) - PowerShellPathItemImplGen(PATH_ITEM)(2061,2065) - PsiElement(SIMPLE_ID)('Temp')(2061,2065) - PsiElement(\)('\')(2065,2066) - PowerShellPathItemImplGen(PATH_ITEM)(2066,2068) - PsiElement(..)('..')(2066,2068) - PsiElement(NLS)('\n\n')(2068,2070) - PsiComment(COMMENT)('#Copies one or more items (§3.3) from one location to another.')(2070,2132) - PsiElement(NLS)('\n')(2132,2133) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2133,2204) - PowerShellCommandNameImplGen(COMMAND_NAME)(2133,2142) - PowerShellIdentifierImplGen(IDENTIFIER)(2133,2142) - PsiElement(GENERIC_ID_PART)('Copy-Item')(2133,2142) - PsiWhiteSpace(' ')(2142,2143) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2143,2148) - PsiElement(CMD_PARAMETER)('-Path')(2143,2148) - PsiWhiteSpace(' ')(2148,2149) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2149,2168) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2149,2168) - PsiElement(DQ_OPEN)('"')(2149,2150) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(2150,2167) - PsiElement(DQ_CLOSE)('"')(2167,2168) - PsiWhiteSpace(' ')(2168,2169) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2169,2181) - PsiElement(CMD_PARAMETER)('-Destination')(2169,2181) - PsiWhiteSpace(' ')(2181,2182) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2182,2204) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2182,2204) - PsiElement(DQ_OPEN)('"')(2182,2183) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2-v2.txt')(2183,2203) - PsiElement(DQ_CLOSE)('"')(2203,2204) - PsiElement(NLS)('\n')(2204,2205) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2205,2274) - PowerShellCommandNameImplGen(COMMAND_NAME)(2205,2214) - PowerShellIdentifierImplGen(IDENTIFIER)(2205,2214) - PsiElement(GENERIC_ID_PART)('Copy-Item')(2205,2214) - PsiWhiteSpace(' ')(2214,2215) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2215,2220) - PsiElement(CMD_PARAMETER)('-Path')(2215,2220) - PsiWhiteSpace(' ')(2220,2221) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2221,2232) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2221,2232) - PsiElement(DQ_OPEN)('"')(2221,2222) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\*')(2222,2231) - PsiElement(DQ_CLOSE)('"')(2231,2232) - PsiElement(,)(',')(2232,2233) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2233,2245) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2233,2245) - PsiElement(DQ_OPEN)('"')(2233,2234) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test3\*')(2234,2244) - PsiElement(DQ_CLOSE)('"')(2244,2245) - PsiWhiteSpace(' ')(2245,2246) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2246,2258) - PsiElement(CMD_PARAMETER)('-Destination')(2246,2258) - PsiWhiteSpace(' ')(2258,2259) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2259,2264) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2259,2264) - PsiElement(DQ_OPEN)('"')(2259,2260) - PsiElement(EXPANDABLE_STRING_PART)('J:\')(2260,2263) - PsiElement(DQ_CLOSE)('"')(2263,2264) - PsiWhiteSpace(' ')(2264,2265) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2265,2274) - PsiElement(CMD_PARAMETER)('-PassThru')(2265,2274) - PsiElement(NLS)('\n')(2274,2275) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2275,2345) - PowerShellCommandNameImplGen(COMMAND_NAME)(2275,2284) - PowerShellIdentifierImplGen(IDENTIFIER)(2275,2284) - PsiElement(GENERIC_ID_PART)('Copy-Item')(2275,2284) - PsiWhiteSpace(' ')(2284,2285) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2285,2290) - PsiElement(CMD_PARAMETER)('-Path')(2285,2290) - PsiWhiteSpace(' ')(2290,2291) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2291,2302) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2291,2302) - PsiElement(DQ_OPEN)('"')(2291,2292) - PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\*')(2292,2301) - PsiElement(DQ_CLOSE)('"')(2301,2302) - PsiWhiteSpace(' ')(2302,2303) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2303,2315) - PsiElement(CMD_PARAMETER)('-Destination')(2303,2315) - PsiWhiteSpace(' ')(2315,2316) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2316,2325) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2316,2325) - PsiElement(DQ_OPEN)('"')(2316,2317) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(2317,2324) - PsiElement(DQ_CLOSE)('"')(2324,2325) - PsiWhiteSpace(' ')(2325,2326) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2326,2336) - PsiElement(CMD_PARAMETER)('-Container')(2326,2336) - PsiWhiteSpace(' ')(2336,2337) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2337,2345) - PsiElement(CMD_PARAMETER)('-Recurse')(2337,2345) - PsiElement(NLS)('\n\n')(2345,2347) - PsiComment(COMMENT)('#Exports alias information to a file.')(2347,2384) - PsiElement(NLS)('\n')(2384,2385) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2385,2443) - PowerShellCommandNameImplGen(COMMAND_NAME)(2385,2397) - PowerShellIdentifierImplGen(IDENTIFIER)(2385,2397) - PsiElement(GENERIC_ID_PART)('Export-Alias')(2385,2397) - PsiWhiteSpace(' ')(2397,2398) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2398,2435) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2398,2435) - PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\AliasList.txt'')(2398,2435) - PsiWhiteSpace(' ')(2435,2436) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2436,2439) - PsiElement(OP_C)('-As')(2436,2439) - PsiWhiteSpace(' ')(2439,2440) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2440,2443) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2440,2443) - PsiElement(SIMPLE_ID)('Csv')(2440,2443) - PsiElement(NLS)('\n')(2443,2444) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2444,2517) - PowerShellCommandNameImplGen(COMMAND_NAME)(2444,2456) - PowerShellIdentifierImplGen(IDENTIFIER)(2444,2456) - PsiElement(GENERIC_ID_PART)('Export-Alias')(2444,2456) - PsiWhiteSpace(' ')(2456,2457) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2457,2491) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2457,2491) - PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\Locals.ps1'')(2457,2491) - PsiWhiteSpace(' ')(2491,2492) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2492,2495) - PsiElement(OP_C)('-As')(2492,2495) - PsiWhiteSpace(' ')(2495,2496) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2496,2502) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2496,2502) - PsiElement(SIMPLE_ID)('Script')(2496,2502) - PsiWhiteSpace(' ')(2502,2503) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2503,2509) - PsiElement(CMD_PARAMETER)('-Scope')(2503,2509) - PsiWhiteSpace(' ')(2509,2510) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2510,2517) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2510,2517) - PsiElement(DQ_OPEN)('"')(2510,2511) - PsiElement(EXPANDABLE_STRING_PART)('Local')(2511,2516) - PsiElement(DQ_CLOSE)('"')(2516,2517) - PsiElement(NLS)('\n\n')(2517,2519) - PsiComment(COMMENT)('#Identifies the module (§3.14) members that are to be exported.')(2519,2582) - PsiElement(NLS)('\n')(2582,2583) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2583,2637) - PowerShellCommandNameImplGen(COMMAND_NAME)(2583,2602) - PowerShellIdentifierImplGen(IDENTIFIER)(2583,2602) - PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2583,2602) - PsiWhiteSpace(' ')(2602,2603) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2603,2612) - PsiElement(CMD_PARAMETER)('-Function')(2603,2612) - PsiWhiteSpace(' ')(2612,2613) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2613,2617) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2613,2617) - PsiElement(SIMPLE_ID)('CToF')(2613,2617) - PsiElement(,)(',')(2617,2618) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2618,2622) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2618,2622) - PsiElement(SIMPLE_ID)('FToC')(2618,2622) - PsiWhiteSpace(' ')(2622,2623) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2623,2629) - PsiElement(CMD_PARAMETER)('-Alias')(2623,2629) - PsiWhiteSpace(' ')(2629,2630) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2630,2633) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2630,2633) - PsiElement(SIMPLE_ID)('c2f')(2630,2633) - PsiElement(,)(',')(2633,2634) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2634,2637) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2634,2637) - PsiElement(SIMPLE_ID)('f2c')(2634,2637) - PsiElement(NLS)('\n')(2637,2638) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2638,2693) - PowerShellCommandNameImplGen(COMMAND_NAME)(2638,2657) - PowerShellIdentifierImplGen(IDENTIFIER)(2638,2657) - PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2638,2657) - PsiWhiteSpace(' ')(2657,2658) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2658,2667) - PsiElement(CMD_PARAMETER)('-Variable')(2658,2667) - PsiWhiteSpace(' ')(2667,2668) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2668,2680) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2668,2680) - PsiElement(SIMPLE_ID)('boolingTempC')(2668,2680) - PsiElement(,)(',')(2680,2681) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2681,2693) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2681,2693) - PsiElement(SIMPLE_ID)('boolingTempF')(2681,2693) - PsiElement(NLS)('\n')(2693,2694) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2694,2751) - PowerShellCommandNameImplGen(COMMAND_NAME)(2694,2713) - PowerShellIdentifierImplGen(IDENTIFIER)(2694,2713) - PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2694,2713) - PsiWhiteSpace(' ')(2713,2714) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2714,2723) - PsiElement(CMD_PARAMETER)('-Variable')(2714,2723) - PsiWhiteSpace(' ')(2723,2724) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2724,2737) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2724,2737) - PsiElement(SIMPLE_ID)('freezingTempC')(2724,2737) - PsiElement(,)(',')(2737,2738) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2738,2751) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2738,2751) - PsiElement(SIMPLE_ID)('freezingTempF')(2738,2751) - PsiElement(NLS)('\n\n')(2751,2753) - PsiComment(COMMENT)('#Performs an operation against each of a set of input objects. (alias %, foreach)')(2753,2834) - PsiElement(NLS)('\n')(2834,2835) - PowerShellPipelineTailImplGen(PIPELINE)(2835,2877) - PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(2835,2842) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2835,2836) - PsiElement(DEC_INTEGER)('5')(2835,2836) - PsiElement(,)(',')(2836,2837) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2837,2839) - PsiElement(DEC_INTEGER)('20')(2837,2839) - PsiElement(,)(',')(2839,2840) - PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(2840,2842) - PsiElement(DASH)('-')(2840,2841) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2841,2842) - PsiElement(DEC_INTEGER)('3')(2841,2842) - PsiWhiteSpace(' ')(2842,2843) - PsiElement(|)('|')(2843,2844) - PsiWhiteSpace(' ')(2844,2845) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2845,2877) - PowerShellCommandNameImplGen(COMMAND_NAME)(2845,2859) - PowerShellIdentifierImplGen(IDENTIFIER)(2845,2859) - PsiElement(GENERIC_ID_PART)('ForEach-Object')(2845,2859) - PsiWhiteSpace(' ')(2859,2860) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2860,2868) - PsiElement(CMD_PARAMETER)('-Process')(2860,2868) - PsiWhiteSpace(' ')(2868,2869) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2869,2877) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2869,2877) - PsiElement({)('{')(2869,2870) - PowerShellBlockBodyImplGen(BLOCK_BODY)(2870,2876) - PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(2870,2876) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2870,2872) - PsiElement($)('$')(2870,2871) - PowerShellIdentifierImplGen(IDENTIFIER)(2871,2872) - PsiElement(SIMPLE_ID)('_')(2871,2872) - PsiWhiteSpace(' ')(2872,2873) - PsiElement(*)('*')(2873,2874) - PsiWhiteSpace(' ')(2874,2875) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2875,2876) - PsiElement(DEC_INTEGER)('2')(2875,2876) - PsiElement(})('}')(2876,2877) - PsiElement(NLS)('\n')(2877,2878) - PowerShellPipelineTailImplGen(PIPELINE)(2878,2946) - PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(2878,2885) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2878,2879) - PsiElement(DEC_INTEGER)('5')(2878,2879) - PsiElement(,)(',')(2879,2880) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2880,2882) - PsiElement(DEC_INTEGER)('20')(2880,2882) - PsiElement(,)(',')(2882,2883) - PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(2883,2885) - PsiElement(DASH)('-')(2883,2884) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2884,2885) - PsiElement(DEC_INTEGER)('3')(2884,2885) - PsiWhiteSpace(' ')(2885,2886) - PsiElement(|)('|')(2886,2887) - PsiWhiteSpace(' ')(2887,2888) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2888,2946) - PowerShellCommandNameImplGen(COMMAND_NAME)(2888,2889) - PowerShellIdentifierImplGen(IDENTIFIER)(2888,2889) - PsiElement(%)('%')(2888,2889) - PsiWhiteSpace(' ')(2889,2890) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2890,2896) - PsiElement(CMD_PARAMETER)('-Begin')(2890,2896) - PsiWhiteSpace(' ')(2896,2897) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2897,2908) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2897,2908) - PsiElement({)('{')(2897,2898) - PsiWhiteSpace(' ')(2898,2899) - PowerShellBlockBodyImplGen(BLOCK_BODY)(2899,2906) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2899,2906) - PsiElement(DQ_OPEN)('"')(2899,2900) - PsiElement(EXPANDABLE_STRING_PART)('Setup')(2900,2905) - PsiElement(DQ_CLOSE)('"')(2905,2906) - PsiWhiteSpace(' ')(2906,2907) - PsiElement(})('}')(2907,2908) - PsiWhiteSpace(' ')(2908,2909) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2909,2917) - PsiElement(CMD_PARAMETER)('-Process')(2909,2917) - PsiWhiteSpace(' ')(2917,2918) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2918,2927) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2918,2927) - PsiElement({)('{')(2918,2919) - PowerShellBlockBodyImplGen(BLOCK_BODY)(2919,2926) - PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(2919,2926) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2919,2921) - PsiElement($)('$')(2919,2920) - PowerShellIdentifierImplGen(IDENTIFIER)(2920,2921) - PsiElement(SIMPLE_ID)('_')(2920,2921) - PsiWhiteSpace(' ')(2921,2922) - PsiElement(*)('*')(2922,2923) - PsiWhiteSpace(' ')(2923,2924) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2924,2926) - PsiElement($)('$')(2924,2925) - PowerShellIdentifierImplGen(IDENTIFIER)(2925,2926) - PsiElement(SIMPLE_ID)('_')(2925,2926) - PsiElement(})('}')(2926,2927) - PsiWhiteSpace(' ')(2927,2928) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2928,2932) - PsiElement(CMD_PARAMETER)('-End')(2928,2932) - PsiWhiteSpace(' ')(2932,2933) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2933,2946) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2933,2946) - PsiElement({)('{')(2933,2934) - PsiWhiteSpace(' ')(2934,2935) - PowerShellBlockBodyImplGen(BLOCK_BODY)(2935,2944) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2935,2944) - PsiElement(DQ_OPEN)('"')(2935,2936) - PsiElement(EXPANDABLE_STRING_PART)('Cleanup')(2936,2943) - PsiElement(DQ_CLOSE)('"')(2943,2944) - PsiWhiteSpace(' ')(2944,2945) - PsiElement(})('}')(2945,2946) - PsiElement(NLS)('\n\n')(2946,2948) - PsiComment(COMMENT)('#Gets alias information.')(2948,2972) - PsiElement(NLS)('\n')(2972,2973) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2973,2995) - PowerShellCommandNameImplGen(COMMAND_NAME)(2973,2982) - PowerShellIdentifierImplGen(IDENTIFIER)(2973,2982) - PsiElement(GENERIC_ID_PART)('Get-Alias')(2973,2982) - PsiWhiteSpace(' ')(2982,2983) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2983,2988) - PsiElement(CMD_PARAMETER)('-Name')(2983,2988) - PsiWhiteSpace(' ')(2988,2989) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2989,2995) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2989,2995) - PsiElement(DQ_OPEN)('"')(2989,2990) - PsiElement(EXPANDABLE_STRING_PART)('Fun*')(2990,2994) - PsiElement(DQ_CLOSE)('"')(2994,2995) - PsiElement(NLS)('\n')(2995,2996) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2996,3023) - PowerShellCommandNameImplGen(COMMAND_NAME)(2996,3005) - PowerShellIdentifierImplGen(IDENTIFIER)(2996,3005) - PsiElement(GENERIC_ID_PART)('Get-Alias')(2996,3005) - PsiWhiteSpace(' ')(3005,3006) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3006,3017) - PsiElement(CMD_PARAMETER)('-Definition')(3006,3017) - PsiWhiteSpace(' ')(3017,3018) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3018,3020) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3018,3020) - PsiElement(SIMPLE_ID)('F1')(3018,3020) - PsiElement(,)(',')(3020,3021) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3021,3023) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3021,3023) - PsiElement(SIMPLE_ID)('F2')(3021,3023) - PsiElement(NLS)('\n\n')(3023,3025) - PsiComment(COMMENT)('#Gets the items (§3.3) and child items at one or more specified locations.')(3025,3099) - PsiElement(NLS)('\n')(3099,3100) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3100,3133) - PowerShellCommandNameImplGen(COMMAND_NAME)(3100,3113) - PowerShellIdentifierImplGen(IDENTIFIER)(3100,3113) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3100,3113) - PsiWhiteSpace(' ')(3113,3114) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3114,3133) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3114,3133) - PsiElement(DQ_OPEN)('"')(3114,3115) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3115,3132) - PsiElement(DQ_CLOSE)('"')(3132,3133) - PsiElement(NLS)('\n')(3133,3134) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3134,3173) - PowerShellCommandNameImplGen(COMMAND_NAME)(3134,3147) - PowerShellIdentifierImplGen(IDENTIFIER)(3134,3147) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3134,3147) - PsiWhiteSpace(' ')(3147,3148) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3148,3167) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3148,3167) - PsiElement(DQ_OPEN)('"')(3148,3149) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3149,3166) - PsiElement(DQ_CLOSE)('"')(3166,3167) - PsiWhiteSpace(' ')(3167,3168) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3168,3173) - PsiElement(CMD_PARAMETER)('-Name')(3168,3173) - PsiElement(NLS)('\n')(3173,3174) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3174,3206) - PowerShellCommandNameImplGen(COMMAND_NAME)(3174,3187) - PowerShellIdentifierImplGen(IDENTIFIER)(3174,3187) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3174,3187) - PsiWhiteSpace(' ')(3187,3188) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3188,3197) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3188,3197) - PsiElement(DQ_OPEN)('"')(3188,3189) - PsiElement(EXPANDABLE_STRING_PART)('J:\F*.*')(3189,3196) - PsiElement(DQ_CLOSE)('"')(3196,3197) - PsiWhiteSpace(' ')(3197,3198) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3198,3206) - PsiElement(CMD_PARAMETER)('-Recurse')(3198,3206) - PsiElement(NLS)('\n\n')(3206,3208) - PsiComment(COMMENT)('#This cmdlet gets information about cmdlets and other elements of commands.')(3208,3283) - PsiElement(NLS)('\n')(3283,3284) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3284,3329) - PowerShellCommandNameImplGen(COMMAND_NAME)(3284,3295) - PowerShellIdentifierImplGen(IDENTIFIER)(3284,3295) - PsiElement(GENERIC_ID_PART)('Get-Command')(3284,3295) - PsiWhiteSpace(' ')(3295,3296) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3296,3308) - PsiElement(CMD_PARAMETER)('-CommandType')(3296,3308) - PsiWhiteSpace(' ')(3308,3309) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3309,3314) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3309,3314) - PsiElement(SIMPLE_ID)('Alias')(3309,3314) - PsiWhiteSpace(' ')(3314,3315) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3315,3326) - PsiElement(CMD_PARAMETER)('-TotalCount')(3315,3326) - PsiWhiteSpace(' ')(3326,3327) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3327,3329) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(3327,3329) - PsiElement(DEC_INTEGER)('10')(3327,3329) - PsiElement(NLS)('\n')(3329,3330) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3330,3393) - PowerShellCommandNameImplGen(COMMAND_NAME)(3330,3341) - PowerShellIdentifierImplGen(IDENTIFIER)(3330,3341) - PsiElement(GENERIC_ID_PART)('Get-Command')(3330,3341) - PsiWhiteSpace(' ')(3341,3342) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3342,3347) - PsiElement(CMD_PARAMETER)('-Name')(3342,3347) - PsiWhiteSpace(' ')(3347,3348) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3348,3358) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3348,3358) - PsiElement(DQ_OPEN)('"')(3348,3349) - PsiElement(EXPANDABLE_STRING_PART)('Get-Date')(3349,3357) - PsiElement(DQ_CLOSE)('"')(3357,3358) - PsiWhiteSpace(' ')(3358,3359) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3359,3372) - PsiElement(CMD_PARAMETER)('-ArgumentList')(3359,3372) - PsiWhiteSpace(' ')(3372,3373) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3373,3378) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3373,3378) - PsiElement(DQ_OPEN)('"')(3373,3374) - PsiElement(EXPANDABLE_STRING_PART)('Day')(3374,3377) - PsiElement(DQ_CLOSE)('"')(3377,3378) - PsiElement(,)(',')(3378,3379) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3379,3386) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3379,3386) - PsiElement(DQ_OPEN)('"')(3379,3380) - PsiElement(EXPANDABLE_STRING_PART)('Month')(3380,3385) - PsiElement(DQ_CLOSE)('"')(3385,3386) - PsiElement(,)(',')(3386,3387) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3387,3393) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3387,3393) - PsiElement(DQ_OPEN)('"')(3387,3388) - PsiElement(EXPANDABLE_STRING_PART)('Year')(3388,3392) - PsiElement(DQ_CLOSE)('"')(3392,3393) - PsiElement(NLS)('\n')(3393,3394) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3394,3450) - PowerShellCommandNameImplGen(COMMAND_NAME)(3394,3405) - PowerShellIdentifierImplGen(IDENTIFIER)(3394,3405) - PsiElement(GENERIC_ID_PART)('Get-Command')(3394,3405) - PsiWhiteSpace(' ')(3405,3406) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3406,3411) - PsiElement(CMD_PARAMETER)('-Name')(3406,3411) - PsiWhiteSpace(' ')(3411,3412) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3412,3422) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3412,3422) - PsiElement(DQ_OPEN)('"')(3412,3413) - PsiElement(EXPANDABLE_STRING_PART)('Get-Date')(3413,3421) - PsiElement(DQ_CLOSE)('"')(3421,3422) - PsiWhiteSpace(' ')(3422,3423) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3423,3435) - PsiElement(CMD_PARAMETER)('-CommandType')(3423,3435) - PsiWhiteSpace(' ')(3435,3436) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3436,3442) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3436,3442) - PsiElement(SIMPLE_ID)('Cmdlet')(3436,3442) - PsiWhiteSpace(' ')(3442,3443) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3443,3450) - PsiElement(CMD_PARAMETER)('-Syntax')(3443,3450) - PsiElement(NLS)('\n\n')(3450,3452) - PsiComment(COMMENT)('#Gets the content of the items (§3.3) at the specified locations.')(3452,3517) - PsiElement(NLS)('\n')(3517,3518) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3518,3563) - PowerShellCommandNameImplGen(COMMAND_NAME)(3518,3529) - PowerShellIdentifierImplGen(IDENTIFIER)(3518,3529) - PsiElement(GENERIC_ID_PART)('Get-Content')(3518,3529) - PsiWhiteSpace(' ')(3529,3530) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3530,3549) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3530,3549) - PsiElement(DQ_OPEN)('"')(3530,3531) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3531,3548) - PsiElement(DQ_CLOSE)('"')(3548,3549) - PsiWhiteSpace(' ')(3549,3550) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3550,3561) - PsiElement(CMD_PARAMETER)('-TotalCount')(3550,3561) - PsiWhiteSpace(' ')(3561,3562) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3562,3563) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(3562,3563) - PsiElement(DEC_INTEGER)('3')(3562,3563) - PsiElement(NLS)('\n')(3563,3564) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3564,3587) - PowerShellCommandNameImplGen(COMMAND_NAME)(3564,3575) - PowerShellIdentifierImplGen(IDENTIFIER)(3564,3575) - PsiElement(GENERIC_ID_PART)('Get-Content')(3564,3575) - PsiWhiteSpace(' ')(3575,3576) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3576,3587) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3576,3587) - PsiElement(DQ_OPEN)('"')(3576,3577) - PsiElement(EXPANDABLE_STRING_PART)('Env:\Path')(3577,3586) - PsiElement(DQ_CLOSE)('"')(3586,3587) - PsiElement(NLS)('\n')(3587,3588) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3588,3617) - PowerShellCommandNameImplGen(COMMAND_NAME)(3588,3599) - PowerShellIdentifierImplGen(IDENTIFIER)(3588,3599) - PsiElement(GENERIC_ID_PART)('Get-Content')(3588,3599) - PsiWhiteSpace(' ')(3599,3600) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3600,3617) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3600,3617) - PsiElement(DQ_OPEN)('"')(3600,3601) - PsiElement(EXPANDABLE_STRING_PART)('Variable:\Count')(3601,3616) - PsiElement(DQ_CLOSE)('"')(3616,3617) - PsiElement(NLS)('\n\n')(3617,3619) - PsiComment(COMMENT)('#Gets a credential object (§4.5.23) based on a user name and password.')(3619,3689) - PsiElement(NLS)('\n')(3689,3690) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(3690,3709) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(3690,3692) - PsiElement($)('$')(3690,3691) - PowerShellIdentifierImplGen(IDENTIFIER)(3691,3692) - PsiElement(SIMPLE_ID)('v')(3691,3692) + PsiComment(COMMENT)('#Clear-Item Variable:Count #TODO[#201]: no need to specify '$' for the variable?')(592,672) + PsiElement(NLS)('\n')(672,673) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(673,699) + PowerShellCommandNameImplGen(COMMAND_NAME)(673,683) + PowerShellIdentifierImplGen(IDENTIFIER)(673,683) + PsiElement(GENERIC_ID_PART)('Clear-Item')(673,683) + PsiWhiteSpace(' ')(683,684) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(684,699) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(684,699) + PsiElement($)('$')(684,685) + PsiElement(SIMPLE_ID)('Variable')(685,693) + PsiElement(:)(':')(693,694) + PowerShellIdentifierImplGen(IDENTIFIER)(694,699) + PsiElement(SIMPLE_ID)('Count')(694,699) + PsiElement(NLS)('\n')(699,700) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(700,748) + PowerShellCommandNameImplGen(COMMAND_NAME)(700,710) + PowerShellIdentifierImplGen(IDENTIFIER)(700,710) + PsiElement(GENERIC_ID_PART)('Clear-Item')(700,710) + PsiWhiteSpace(' ')(710,711) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(711,721) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(711,721) + PsiElement($)('$')(711,712) + PsiElement(SIMPLE_ID)('Alias')(712,717) + PsiElement(:)(':')(717,718) + PowerShellIdentifierImplGen(IDENTIFIER)(718,721) + PsiElement(SIMPLE_ID)('log')(718,721) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(721,722) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(721,722) + PsiElement(*)('*')(721,722) + PsiWhiteSpace(' ')(722,723) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(723,731) + PsiElement(CMD_PARAMETER)('-Include')(723,731) + PsiWhiteSpace(' ')(731,732) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(732,735) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(732,735) + PsiElement(*)('*')(732,733) + PsiElement(DEC_INTEGER)('1')(733,734) + PsiElement(*)('*')(734,735) + PsiWhiteSpace(' ')(735,736) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(736,744) + PsiElement(CMD_PARAMETER)('-Exclude')(736,744) + PsiWhiteSpace(' ')(744,745) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(745,748) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(745,748) + PsiElement(*)('*')(745,746) + PsiElement(DEC_INTEGER)('3')(746,747) + PsiElement(*)('*')(747,748) + PsiElement(NLS)('\n\n')(748,750) + PsiComment(COMMENT)('#Deletes the value of one or more existing variables.')(750,803) + PsiElement(NLS)('\n')(803,804) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(804,860) + PowerShellCommandNameImplGen(COMMAND_NAME)(804,818) + PowerShellIdentifierImplGen(IDENTIFIER)(804,818) + PsiElement(GENERIC_ID_PART)('Clear-Variable')(804,818) + PsiWhiteSpace(' ')(818,819) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(819,829) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(819,829) + PsiElement(VERBATIM_STRING)(''Count10?'')(819,829) + PsiWhiteSpace(' ')(829,830) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(830,838) + PsiElement(CMD_PARAMETER)('-Exclude')(830,838) + PsiWhiteSpace(' ')(838,839) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(839,849) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(839,849) + PsiElement(VERBATIM_STRING)(''Count101'')(839,849) + PsiElement(,)(',')(849,850) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(850,860) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(850,860) + PsiElement(VERBATIM_STRING)(''Count102'')(850,860) + PsiElement(NLS)('\n\n')(860,862) + PsiComment(COMMENT)('#Compares two sets of objects.')(862,892) + PsiElement(NLS)('\n')(892,893) + PsiComment(COMMENT)('#File1.txt contains the records red, green, yellow, blue, and black. File1.txt contains the records red, Green, blue, Black, and white.')(893,1028) + PsiElement(NLS)('\n')(1028,1029) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1029,1138) + PowerShellCommandNameImplGen(COMMAND_NAME)(1029,1043) + PowerShellIdentifierImplGen(IDENTIFIER)(1029,1043) + PsiElement(GENERIC_ID_PART)('Compare-Object')(1029,1043) + PsiWhiteSpace(' ')(1043,1044) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1044,1060) + PsiElement(CMD_PARAMETER)('-ReferenceObject')(1044,1060) + PsiWhiteSpace(' ')(1060,1061) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1061,1085) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1061,1085) + PsiElement($)('$')(1061,1062) + PsiElement(()('(')(1062,1063) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1063,1084) + PowerShellCommandNameImplGen(COMMAND_NAME)(1063,1074) + PowerShellIdentifierImplGen(IDENTIFIER)(1063,1074) + PsiElement(GENERIC_ID_PART)('Get-Content')(1063,1074) + PsiWhiteSpace(' ')(1074,1075) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1075,1084) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1075,1084) + PsiElement(SIMPLE_ID)('File1')(1075,1080) + PsiElement(.)('.')(1080,1081) + PsiElement(SIMPLE_ID)('txt')(1081,1084) + PsiElement())(')')(1084,1085) + PsiWhiteSpace(' ')(1085,1086) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1086,1103) + PsiElement(CMD_PARAMETER)('-DifferenceObject')(1086,1103) + PsiWhiteSpace(' ')(1103,1104) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1104,1128) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1104,1128) + PsiElement($)('$')(1104,1105) + PsiElement(()('(')(1105,1106) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1106,1127) + PowerShellCommandNameImplGen(COMMAND_NAME)(1106,1117) + PowerShellIdentifierImplGen(IDENTIFIER)(1106,1117) + PsiElement(GENERIC_ID_PART)('Get-Content')(1106,1117) + PsiWhiteSpace(' ')(1117,1118) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1118,1127) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1118,1127) + PsiElement(SIMPLE_ID)('File2')(1118,1123) + PsiElement(.)('.')(1123,1124) + PsiElement(SIMPLE_ID)('txt')(1124,1127) + PsiElement())(')')(1127,1128) + PsiWhiteSpace(' ')(1128,1129) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1129,1138) + PsiElement(CMD_PARAMETER)('-PassThru')(1129,1138) + PsiElement(NLS)('\n')(1138,1139) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1139,1263) + PowerShellCommandNameImplGen(COMMAND_NAME)(1139,1153) + PowerShellIdentifierImplGen(IDENTIFIER)(1139,1153) + PsiElement(GENERIC_ID_PART)('Compare-Object')(1139,1153) + PsiWhiteSpace(' ')(1153,1154) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1154,1170) + PsiElement(CMD_PARAMETER)('-ReferenceObject')(1154,1170) + PsiWhiteSpace(' ')(1170,1171) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1171,1195) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1171,1195) + PsiElement($)('$')(1171,1172) + PsiElement(()('(')(1172,1173) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1173,1194) + PowerShellCommandNameImplGen(COMMAND_NAME)(1173,1184) + PowerShellIdentifierImplGen(IDENTIFIER)(1173,1184) + PsiElement(GENERIC_ID_PART)('Get-Content')(1173,1184) + PsiWhiteSpace(' ')(1184,1185) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1185,1194) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1185,1194) + PsiElement(SIMPLE_ID)('File1')(1185,1190) + PsiElement(.)('.')(1190,1191) + PsiElement(SIMPLE_ID)('txt')(1191,1194) + PsiElement())(')')(1194,1195) + PsiWhiteSpace(' ')(1195,1196) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1196,1213) + PsiElement(CMD_PARAMETER)('-DifferenceObject')(1196,1213) + PsiWhiteSpace(' ')(1213,1214) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1214,1238) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1214,1238) + PsiElement($)('$')(1214,1215) + PsiElement(()('(')(1215,1216) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1216,1237) + PowerShellCommandNameImplGen(COMMAND_NAME)(1216,1227) + PowerShellIdentifierImplGen(IDENTIFIER)(1216,1227) + PsiElement(GENERIC_ID_PART)('Get-Content')(1216,1227) + PsiWhiteSpace(' ')(1227,1228) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1228,1237) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1228,1237) + PsiElement(SIMPLE_ID)('File2')(1228,1233) + PsiElement(.)('.')(1233,1234) + PsiElement(SIMPLE_ID)('txt')(1234,1237) + PsiElement())(')')(1237,1238) + PsiWhiteSpace(' ')(1238,1239) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1239,1248) + PsiElement(CMD_PARAMETER)('-PassThru')(1239,1248) + PsiWhiteSpace(' ')(1248,1249) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1249,1263) + PsiElement(CMD_PARAMETER)('-CaseSensitive')(1249,1263) + PsiElement(NLS)('\n')(1263,1264) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1264,1405) + PowerShellCommandNameImplGen(COMMAND_NAME)(1264,1278) + PowerShellIdentifierImplGen(IDENTIFIER)(1264,1278) + PsiElement(GENERIC_ID_PART)('Compare-Object')(1264,1278) + PsiWhiteSpace(' ')(1278,1279) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1279,1295) + PsiElement(CMD_PARAMETER)('-ReferenceObject')(1279,1295) + PsiWhiteSpace(' ')(1295,1296) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1296,1320) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1296,1320) + PsiElement($)('$')(1296,1297) + PsiElement(()('(')(1297,1298) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1298,1319) + PowerShellCommandNameImplGen(COMMAND_NAME)(1298,1309) + PowerShellIdentifierImplGen(IDENTIFIER)(1298,1309) + PsiElement(GENERIC_ID_PART)('Get-Content')(1298,1309) + PsiWhiteSpace(' ')(1309,1310) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1310,1319) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1310,1319) + PsiElement(SIMPLE_ID)('File1')(1310,1315) + PsiElement(.)('.')(1315,1316) + PsiElement(SIMPLE_ID)('txt')(1316,1319) + PsiElement())(')')(1319,1320) + PsiWhiteSpace(' ')(1320,1321) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1321,1338) + PsiElement(CMD_PARAMETER)('-DifferenceObject')(1321,1338) + PsiWhiteSpace(' ')(1338,1339) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1339,1363) + PowerShellSubExpressionImplGen(SUB_EXPRESSION)(1339,1363) + PsiElement($)('$')(1339,1340) + PsiElement(()('(')(1340,1341) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1341,1362) + PowerShellCommandNameImplGen(COMMAND_NAME)(1341,1352) + PowerShellIdentifierImplGen(IDENTIFIER)(1341,1352) + PsiElement(GENERIC_ID_PART)('Get-Content')(1341,1352) + PsiWhiteSpace(' ')(1352,1353) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1353,1362) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(1353,1362) + PsiElement(SIMPLE_ID)('File2')(1353,1358) + PsiElement(.)('.')(1358,1359) + PsiElement(SIMPLE_ID)('txt')(1359,1362) + PsiElement())(')')(1362,1363) + PsiWhiteSpace(' ')(1363,1364) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1364,1373) + PsiElement(CMD_PARAMETER)('-PassThru')(1364,1373) + PsiWhiteSpace(' ')(1373,1374) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1374,1391) + PsiElement(CMD_PARAMETER)('-ExcludeDifferent')(1374,1391) + PsiWhiteSpace(' ')(1391,1392) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1392,1405) + PsiElement(CMD_PARAMETER)('-IncludeEqual')(1392,1405) + PsiElement(NLS)('\n\n')(1405,1407) + PsiComment(COMMENT)('#Converts a string containing one or more key/value pairs to a hash table.')(1407,1481) + PsiElement(NLS)('\n')(1481,1482) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1482,1631) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1482,1486) + PsiElement($)('$')(1482,1483) + PowerShellIdentifierImplGen(IDENTIFIER)(1483,1486) + PsiElement(SIMPLE_ID)('str')(1483,1486) + PsiWhiteSpace(' ')(1486,1487) + PsiElement(=)('=')(1487,1488) + PsiWhiteSpace(' ')(1488,1489) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1489,1631) + PsiElement(VERBATIM_HERE_STRING)('@'\nMsg1 = The string parameter is required.\nMsg2 = Credentials are required for this command.\nMsg3 = The specified variable does not exist.\n'@')(1489,1631) + PsiElement(NLS)('\n')(1631,1632) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1632,1676) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1632,1634) + PsiElement($)('$')(1632,1633) + PowerShellIdentifierImplGen(IDENTIFIER)(1633,1634) + PsiElement(SIMPLE_ID)('v')(1633,1634) + PsiWhiteSpace(' ')(1634,1635) + PsiElement(=)('=')(1635,1636) + PsiWhiteSpace(' ')(1636,1637) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1637,1676) + PowerShellCommandNameImplGen(COMMAND_NAME)(1637,1659) + PowerShellIdentifierImplGen(IDENTIFIER)(1637,1659) + PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1637,1659) + PsiWhiteSpace(' ')(1659,1660) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1660,1671) + PsiElement(CMD_PARAMETER)('-StringData')(1660,1671) + PsiWhiteSpace(' ')(1671,1672) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1672,1676) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1672,1676) + PsiElement($)('$')(1672,1673) + PowerShellIdentifierImplGen(IDENTIFIER)(1673,1676) + PsiElement(SIMPLE_ID)('str')(1673,1676) + PsiElement(NLS)('\n')(1676,1677) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1677,1711) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1677,1679) + PsiElement($)('$')(1677,1678) + PowerShellIdentifierImplGen(IDENTIFIER)(1678,1679) + PsiElement(SIMPLE_ID)('v')(1678,1679) + PsiWhiteSpace(' ')(1679,1680) + PsiElement(=)('=')(1680,1681) + PsiWhiteSpace(' ')(1681,1682) + PowerShellPipelineTailImplGen(PIPELINE)(1682,1711) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1682,1686) + PsiElement($)('$')(1682,1683) + PowerShellIdentifierImplGen(IDENTIFIER)(1683,1686) + PsiElement(SIMPLE_ID)('str')(1683,1686) + PsiWhiteSpace(' ')(1686,1687) + PsiElement(|)('|')(1687,1688) + PsiWhiteSpace(' ')(1688,1689) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1689,1711) + PowerShellCommandNameImplGen(COMMAND_NAME)(1689,1711) + PowerShellIdentifierImplGen(IDENTIFIER)(1689,1711) + PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1689,1711) + PsiElement(NLS)('\n')(1711,1712) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1712,1841) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1712,1714) + PsiElement($)('$')(1712,1713) + PowerShellIdentifierImplGen(IDENTIFIER)(1713,1714) + PsiElement(SIMPLE_ID)('v')(1713,1714) + PsiWhiteSpace(' ')(1714,1715) + PsiElement(=)('=')(1715,1716) + PsiWhiteSpace(' ')(1716,1717) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1717,1841) + PowerShellCommandNameImplGen(COMMAND_NAME)(1717,1739) + PowerShellIdentifierImplGen(IDENTIFIER)(1717,1739) + PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1717,1739) + PsiWhiteSpace(' ')(1739,1740) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1740,1751) + PsiElement(CMD_PARAMETER)('-StringData')(1740,1751) + PsiWhiteSpace(' ')(1751,1752) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1752,1841) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1752,1841) + PsiElement(VERBATIM_HERE_STRING)('@'\n Name = Disks.ps1\n # Category is optional.\n Category = Storage\n Cost = Free\n'@')(1752,1841) + PsiElement(NLS)('\n')(1841,1842) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(1842,1910) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(1842,1844) + PsiElement($)('$')(1842,1843) + PowerShellIdentifierImplGen(IDENTIFIER)(1843,1844) + PsiElement(SIMPLE_ID)('v')(1843,1844) + PsiWhiteSpace(' ')(1844,1845) + PsiElement(=)('=')(1845,1846) + PsiWhiteSpace(' ')(1846,1847) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1847,1910) + PowerShellCommandNameImplGen(COMMAND_NAME)(1847,1869) + PowerShellIdentifierImplGen(IDENTIFIER)(1847,1869) + PsiElement(GENERIC_ID_PART)('ConvertFrom-StringData')(1847,1869) + PsiWhiteSpace(' ')(1869,1870) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(1870,1881) + PsiElement(CMD_PARAMETER)('-StringData')(1870,1881) + PsiWhiteSpace(' ')(1881,1882) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(1882,1910) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(1882,1910) + PsiElement(DQ_OPEN)('"')(1882,1883) + PsiElement(EXPANDABLE_STRING_PART)('Top = Red `n Bottom = Blue')(1883,1909) + PsiElement(DQ_CLOSE)('"')(1909,1910) + PsiElement(NLS)('\n\n')(1910,1912) + PsiComment(COMMENT)('#Converts a path (§3.4) from a PowerShell path to a PowerShell provider path.')(1912,1989) + PsiElement(NLS)('\n')(1989,1990) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(1990,2012) + PowerShellCommandNameImplGen(COMMAND_NAME)(1990,2002) + PowerShellIdentifierImplGen(IDENTIFIER)(1990,2002) + PsiElement(GENERIC_ID_PART)('Convert-Path')(1990,2002) + PsiWhiteSpace(' ')(2002,2003) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2003,2008) + PsiElement(CMD_PARAMETER)('-Path')(2003,2008) + PsiWhiteSpace(' ')(2008,2009) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2009,2011) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2009,2011) + PowerShellPathItemImplGen(PATH_ITEM)(2009,2010) + PsiElement(SIMPLE_ID)('E')(2009,2010) + PsiElement(:)(':')(2010,2011) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2011,2012) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2011,2012) + PowerShellPathItemImplGen(PATH_ITEM)(2011,2012) + PsiElement(.)('.')(2011,2012) + PsiElement(NLS)('\n')(2012,2013) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2013,2046) + PowerShellCommandNameImplGen(COMMAND_NAME)(2013,2025) + PowerShellIdentifierImplGen(IDENTIFIER)(2013,2025) + PsiElement(GENERIC_ID_PART)('Convert-Path')(2013,2025) + PsiWhiteSpace(' ')(2025,2026) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2026,2031) + PsiElement(CMD_PARAMETER)('-Path')(2026,2031) + PsiWhiteSpace(' ')(2031,2032) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2032,2034) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2032,2034) + PowerShellPathItemImplGen(PATH_ITEM)(2032,2033) + PsiElement(SIMPLE_ID)('E')(2032,2033) + PsiElement(:)(':')(2033,2034) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2034,2035) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2034,2035) + PowerShellPathItemImplGen(PATH_ITEM)(2034,2035) + PsiElement(.)('.')(2034,2035) + PsiElement(,)(',')(2035,2036) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2036,2046) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(2036,2046) + PowerShellPathItemImplGen(PATH_ITEM)(2036,2037) + PsiElement(SIMPLE_ID)('G')(2036,2037) + PsiElement(:)(':')(2037,2038) + PsiElement(\)('\')(2038,2039) + PowerShellPathItemImplGen(PATH_ITEM)(2039,2043) + PsiElement(SIMPLE_ID)('Temp')(2039,2043) + PsiElement(\)('\')(2043,2044) + PowerShellPathItemImplGen(PATH_ITEM)(2044,2046) + PsiElement(..)('..')(2044,2046) + PsiElement(NLS)('\n\n')(2046,2048) + PsiComment(COMMENT)('#Copies one or more items (§3.3) from one location to another.')(2048,2110) + PsiElement(NLS)('\n')(2110,2111) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2111,2182) + PowerShellCommandNameImplGen(COMMAND_NAME)(2111,2120) + PowerShellIdentifierImplGen(IDENTIFIER)(2111,2120) + PsiElement(GENERIC_ID_PART)('Copy-Item')(2111,2120) + PsiWhiteSpace(' ')(2120,2121) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2121,2126) + PsiElement(CMD_PARAMETER)('-Path')(2121,2126) + PsiWhiteSpace(' ')(2126,2127) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2127,2146) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2127,2146) + PsiElement(DQ_OPEN)('"')(2127,2128) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(2128,2145) + PsiElement(DQ_CLOSE)('"')(2145,2146) + PsiWhiteSpace(' ')(2146,2147) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2147,2159) + PsiElement(CMD_PARAMETER)('-Destination')(2147,2159) + PsiWhiteSpace(' ')(2159,2160) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2160,2182) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2160,2182) + PsiElement(DQ_OPEN)('"')(2160,2161) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2-v2.txt')(2161,2181) + PsiElement(DQ_CLOSE)('"')(2181,2182) + PsiElement(NLS)('\n')(2182,2183) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2183,2252) + PowerShellCommandNameImplGen(COMMAND_NAME)(2183,2192) + PowerShellIdentifierImplGen(IDENTIFIER)(2183,2192) + PsiElement(GENERIC_ID_PART)('Copy-Item')(2183,2192) + PsiWhiteSpace(' ')(2192,2193) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2193,2198) + PsiElement(CMD_PARAMETER)('-Path')(2193,2198) + PsiWhiteSpace(' ')(2198,2199) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2199,2210) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2199,2210) + PsiElement(DQ_OPEN)('"')(2199,2200) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\*')(2200,2209) + PsiElement(DQ_CLOSE)('"')(2209,2210) + PsiElement(,)(',')(2210,2211) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2211,2223) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2211,2223) + PsiElement(DQ_OPEN)('"')(2211,2212) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test3\*')(2212,2222) + PsiElement(DQ_CLOSE)('"')(2222,2223) + PsiWhiteSpace(' ')(2223,2224) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2224,2236) + PsiElement(CMD_PARAMETER)('-Destination')(2224,2236) + PsiWhiteSpace(' ')(2236,2237) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2237,2242) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2237,2242) + PsiElement(DQ_OPEN)('"')(2237,2238) + PsiElement(EXPANDABLE_STRING_PART)('J:\')(2238,2241) + PsiElement(DQ_CLOSE)('"')(2241,2242) + PsiWhiteSpace(' ')(2242,2243) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2243,2252) + PsiElement(CMD_PARAMETER)('-PassThru')(2243,2252) + PsiElement(NLS)('\n')(2252,2253) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2253,2323) + PowerShellCommandNameImplGen(COMMAND_NAME)(2253,2262) + PowerShellIdentifierImplGen(IDENTIFIER)(2253,2262) + PsiElement(GENERIC_ID_PART)('Copy-Item')(2253,2262) + PsiWhiteSpace(' ')(2262,2263) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2263,2268) + PsiElement(CMD_PARAMETER)('-Path')(2263,2268) + PsiWhiteSpace(' ')(2268,2269) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2269,2280) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2269,2280) + PsiElement(DQ_OPEN)('"')(2269,2270) + PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\*')(2270,2279) + PsiElement(DQ_CLOSE)('"')(2279,2280) + PsiWhiteSpace(' ')(2280,2281) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2281,2293) + PsiElement(CMD_PARAMETER)('-Destination')(2281,2293) + PsiWhiteSpace(' ')(2293,2294) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2294,2303) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2294,2303) + PsiElement(DQ_OPEN)('"')(2294,2295) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(2295,2302) + PsiElement(DQ_CLOSE)('"')(2302,2303) + PsiWhiteSpace(' ')(2303,2304) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2304,2314) + PsiElement(CMD_PARAMETER)('-Container')(2304,2314) + PsiWhiteSpace(' ')(2314,2315) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2315,2323) + PsiElement(CMD_PARAMETER)('-Recurse')(2315,2323) + PsiElement(NLS)('\n\n')(2323,2325) + PsiComment(COMMENT)('#Exports alias information to a file.')(2325,2362) + PsiElement(NLS)('\n')(2362,2363) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2363,2421) + PowerShellCommandNameImplGen(COMMAND_NAME)(2363,2375) + PowerShellIdentifierImplGen(IDENTIFIER)(2363,2375) + PsiElement(GENERIC_ID_PART)('Export-Alias')(2363,2375) + PsiWhiteSpace(' ')(2375,2376) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2376,2413) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2376,2413) + PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\AliasList.txt'')(2376,2413) + PsiWhiteSpace(' ')(2413,2414) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2414,2417) + PsiElement(OP_C)('-As')(2414,2417) + PsiWhiteSpace(' ')(2417,2418) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2418,2421) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2418,2421) + PsiElement(SIMPLE_ID)('Csv')(2418,2421) + PsiElement(NLS)('\n')(2421,2422) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2422,2495) + PowerShellCommandNameImplGen(COMMAND_NAME)(2422,2434) + PowerShellIdentifierImplGen(IDENTIFIER)(2422,2434) + PsiElement(GENERIC_ID_PART)('Export-Alias')(2422,2434) + PsiWhiteSpace(' ')(2434,2435) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2435,2469) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2435,2469) + PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\Locals.ps1'')(2435,2469) + PsiWhiteSpace(' ')(2469,2470) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2470,2473) + PsiElement(OP_C)('-As')(2470,2473) + PsiWhiteSpace(' ')(2473,2474) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2474,2480) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2474,2480) + PsiElement(SIMPLE_ID)('Script')(2474,2480) + PsiWhiteSpace(' ')(2480,2481) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2481,2487) + PsiElement(CMD_PARAMETER)('-Scope')(2481,2487) + PsiWhiteSpace(' ')(2487,2488) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2488,2495) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2488,2495) + PsiElement(DQ_OPEN)('"')(2488,2489) + PsiElement(EXPANDABLE_STRING_PART)('Local')(2489,2494) + PsiElement(DQ_CLOSE)('"')(2494,2495) + PsiElement(NLS)('\n\n')(2495,2497) + PsiComment(COMMENT)('#Identifies the module (§3.14) members that are to be exported.')(2497,2560) + PsiElement(NLS)('\n')(2560,2561) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2561,2615) + PowerShellCommandNameImplGen(COMMAND_NAME)(2561,2580) + PowerShellIdentifierImplGen(IDENTIFIER)(2561,2580) + PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2561,2580) + PsiWhiteSpace(' ')(2580,2581) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2581,2590) + PsiElement(CMD_PARAMETER)('-Function')(2581,2590) + PsiWhiteSpace(' ')(2590,2591) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2591,2595) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2591,2595) + PsiElement(SIMPLE_ID)('CToF')(2591,2595) + PsiElement(,)(',')(2595,2596) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2596,2600) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2596,2600) + PsiElement(SIMPLE_ID)('FToC')(2596,2600) + PsiWhiteSpace(' ')(2600,2601) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2601,2607) + PsiElement(CMD_PARAMETER)('-Alias')(2601,2607) + PsiWhiteSpace(' ')(2607,2608) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2608,2611) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2608,2611) + PsiElement(SIMPLE_ID)('c2f')(2608,2611) + PsiElement(,)(',')(2611,2612) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2612,2615) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2612,2615) + PsiElement(SIMPLE_ID)('f2c')(2612,2615) + PsiElement(NLS)('\n')(2615,2616) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2616,2671) + PowerShellCommandNameImplGen(COMMAND_NAME)(2616,2635) + PowerShellIdentifierImplGen(IDENTIFIER)(2616,2635) + PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2616,2635) + PsiWhiteSpace(' ')(2635,2636) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2636,2645) + PsiElement(CMD_PARAMETER)('-Variable')(2636,2645) + PsiWhiteSpace(' ')(2645,2646) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2646,2658) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2646,2658) + PsiElement(SIMPLE_ID)('boolingTempC')(2646,2658) + PsiElement(,)(',')(2658,2659) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2659,2671) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2659,2671) + PsiElement(SIMPLE_ID)('boolingTempF')(2659,2671) + PsiElement(NLS)('\n')(2671,2672) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2672,2729) + PowerShellCommandNameImplGen(COMMAND_NAME)(2672,2691) + PowerShellIdentifierImplGen(IDENTIFIER)(2672,2691) + PsiElement(GENERIC_ID_PART)('Export-ModuleMember')(2672,2691) + PsiWhiteSpace(' ')(2691,2692) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2692,2701) + PsiElement(CMD_PARAMETER)('-Variable')(2692,2701) + PsiWhiteSpace(' ')(2701,2702) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2702,2715) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2702,2715) + PsiElement(SIMPLE_ID)('freezingTempC')(2702,2715) + PsiElement(,)(',')(2715,2716) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2716,2729) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2716,2729) + PsiElement(SIMPLE_ID)('freezingTempF')(2716,2729) + PsiElement(NLS)('\n\n')(2729,2731) + PsiComment(COMMENT)('#Performs an operation against each of a set of input objects. (alias %, foreach)')(2731,2812) + PsiElement(NLS)('\n')(2812,2813) + PowerShellPipelineTailImplGen(PIPELINE)(2813,2855) + PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(2813,2820) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2813,2814) + PsiElement(DEC_INTEGER)('5')(2813,2814) + PsiElement(,)(',')(2814,2815) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2815,2817) + PsiElement(DEC_INTEGER)('20')(2815,2817) + PsiElement(,)(',')(2817,2818) + PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(2818,2820) + PsiElement(DASH)('-')(2818,2819) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2819,2820) + PsiElement(DEC_INTEGER)('3')(2819,2820) + PsiWhiteSpace(' ')(2820,2821) + PsiElement(|)('|')(2821,2822) + PsiWhiteSpace(' ')(2822,2823) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2823,2855) + PowerShellCommandNameImplGen(COMMAND_NAME)(2823,2837) + PowerShellIdentifierImplGen(IDENTIFIER)(2823,2837) + PsiElement(GENERIC_ID_PART)('ForEach-Object')(2823,2837) + PsiWhiteSpace(' ')(2837,2838) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2838,2846) + PsiElement(CMD_PARAMETER)('-Process')(2838,2846) + PsiWhiteSpace(' ')(2846,2847) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2847,2855) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2847,2855) + PsiElement({)('{')(2847,2848) + PowerShellBlockBodyImplGen(BLOCK_BODY)(2848,2854) + PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(2848,2854) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2848,2850) + PsiElement($)('$')(2848,2849) + PowerShellIdentifierImplGen(IDENTIFIER)(2849,2850) + PsiElement(SIMPLE_ID)('_')(2849,2850) + PsiWhiteSpace(' ')(2850,2851) + PsiElement(*)('*')(2851,2852) + PsiWhiteSpace(' ')(2852,2853) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2853,2854) + PsiElement(DEC_INTEGER)('2')(2853,2854) + PsiElement(})('}')(2854,2855) + PsiElement(NLS)('\n')(2855,2856) + PowerShellPipelineTailImplGen(PIPELINE)(2856,2924) + PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(2856,2863) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2856,2857) + PsiElement(DEC_INTEGER)('5')(2856,2857) + PsiElement(,)(',')(2857,2858) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2858,2860) + PsiElement(DEC_INTEGER)('20')(2858,2860) + PsiElement(,)(',')(2860,2861) + PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(2861,2863) + PsiElement(DASH)('-')(2861,2862) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(2862,2863) + PsiElement(DEC_INTEGER)('3')(2862,2863) + PsiWhiteSpace(' ')(2863,2864) + PsiElement(|)('|')(2864,2865) + PsiWhiteSpace(' ')(2865,2866) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2866,2924) + PowerShellCommandNameImplGen(COMMAND_NAME)(2866,2867) + PowerShellIdentifierImplGen(IDENTIFIER)(2866,2867) + PsiElement(%)('%')(2866,2867) + PsiWhiteSpace(' ')(2867,2868) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2868,2874) + PsiElement(CMD_PARAMETER)('-Begin')(2868,2874) + PsiWhiteSpace(' ')(2874,2875) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2875,2886) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2875,2886) + PsiElement({)('{')(2875,2876) + PsiWhiteSpace(' ')(2876,2877) + PowerShellBlockBodyImplGen(BLOCK_BODY)(2877,2884) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2877,2884) + PsiElement(DQ_OPEN)('"')(2877,2878) + PsiElement(EXPANDABLE_STRING_PART)('Setup')(2878,2883) + PsiElement(DQ_CLOSE)('"')(2883,2884) + PsiWhiteSpace(' ')(2884,2885) + PsiElement(})('}')(2885,2886) + PsiWhiteSpace(' ')(2886,2887) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2887,2895) + PsiElement(CMD_PARAMETER)('-Process')(2887,2895) + PsiWhiteSpace(' ')(2895,2896) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2896,2905) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2896,2905) + PsiElement({)('{')(2896,2897) + PowerShellBlockBodyImplGen(BLOCK_BODY)(2897,2904) + PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(2897,2904) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2897,2899) + PsiElement($)('$')(2897,2898) + PowerShellIdentifierImplGen(IDENTIFIER)(2898,2899) + PsiElement(SIMPLE_ID)('_')(2898,2899) + PsiWhiteSpace(' ')(2899,2900) + PsiElement(*)('*')(2900,2901) + PsiWhiteSpace(' ')(2901,2902) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(2902,2904) + PsiElement($)('$')(2902,2903) + PowerShellIdentifierImplGen(IDENTIFIER)(2903,2904) + PsiElement(SIMPLE_ID)('_')(2903,2904) + PsiElement(})('}')(2904,2905) + PsiWhiteSpace(' ')(2905,2906) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2906,2910) + PsiElement(CMD_PARAMETER)('-End')(2906,2910) + PsiWhiteSpace(' ')(2910,2911) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2911,2924) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(2911,2924) + PsiElement({)('{')(2911,2912) + PsiWhiteSpace(' ')(2912,2913) + PowerShellBlockBodyImplGen(BLOCK_BODY)(2913,2922) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2913,2922) + PsiElement(DQ_OPEN)('"')(2913,2914) + PsiElement(EXPANDABLE_STRING_PART)('Cleanup')(2914,2921) + PsiElement(DQ_CLOSE)('"')(2921,2922) + PsiWhiteSpace(' ')(2922,2923) + PsiElement(})('}')(2923,2924) + PsiElement(NLS)('\n\n')(2924,2926) + PsiComment(COMMENT)('#Gets alias information.')(2926,2950) + PsiElement(NLS)('\n')(2950,2951) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2951,2973) + PowerShellCommandNameImplGen(COMMAND_NAME)(2951,2960) + PowerShellIdentifierImplGen(IDENTIFIER)(2951,2960) + PsiElement(GENERIC_ID_PART)('Get-Alias')(2951,2960) + PsiWhiteSpace(' ')(2960,2961) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2961,2966) + PsiElement(CMD_PARAMETER)('-Name')(2961,2966) + PsiWhiteSpace(' ')(2966,2967) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2967,2973) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(2967,2973) + PsiElement(DQ_OPEN)('"')(2967,2968) + PsiElement(EXPANDABLE_STRING_PART)('Fun*')(2968,2972) + PsiElement(DQ_CLOSE)('"')(2972,2973) + PsiElement(NLS)('\n')(2973,2974) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(2974,3001) + PowerShellCommandNameImplGen(COMMAND_NAME)(2974,2983) + PowerShellIdentifierImplGen(IDENTIFIER)(2974,2983) + PsiElement(GENERIC_ID_PART)('Get-Alias')(2974,2983) + PsiWhiteSpace(' ')(2983,2984) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(2984,2995) + PsiElement(CMD_PARAMETER)('-Definition')(2984,2995) + PsiWhiteSpace(' ')(2995,2996) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2996,2998) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2996,2998) + PsiElement(SIMPLE_ID)('F1')(2996,2998) + PsiElement(,)(',')(2998,2999) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(2999,3001) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(2999,3001) + PsiElement(SIMPLE_ID)('F2')(2999,3001) + PsiElement(NLS)('\n\n')(3001,3003) + PsiComment(COMMENT)('#Gets the items (§3.3) and child items at one or more specified locations.')(3003,3077) + PsiElement(NLS)('\n')(3077,3078) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3078,3111) + PowerShellCommandNameImplGen(COMMAND_NAME)(3078,3091) + PowerShellIdentifierImplGen(IDENTIFIER)(3078,3091) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3078,3091) + PsiWhiteSpace(' ')(3091,3092) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3092,3111) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3092,3111) + PsiElement(DQ_OPEN)('"')(3092,3093) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3093,3110) + PsiElement(DQ_CLOSE)('"')(3110,3111) + PsiElement(NLS)('\n')(3111,3112) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3112,3151) + PowerShellCommandNameImplGen(COMMAND_NAME)(3112,3125) + PowerShellIdentifierImplGen(IDENTIFIER)(3112,3125) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3112,3125) + PsiWhiteSpace(' ')(3125,3126) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3126,3145) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3126,3145) + PsiElement(DQ_OPEN)('"')(3126,3127) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3127,3144) + PsiElement(DQ_CLOSE)('"')(3144,3145) + PsiWhiteSpace(' ')(3145,3146) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3146,3151) + PsiElement(CMD_PARAMETER)('-Name')(3146,3151) + PsiElement(NLS)('\n')(3151,3152) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3152,3184) + PowerShellCommandNameImplGen(COMMAND_NAME)(3152,3165) + PowerShellIdentifierImplGen(IDENTIFIER)(3152,3165) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(3152,3165) + PsiWhiteSpace(' ')(3165,3166) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3166,3175) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3166,3175) + PsiElement(DQ_OPEN)('"')(3166,3167) + PsiElement(EXPANDABLE_STRING_PART)('J:\F*.*')(3167,3174) + PsiElement(DQ_CLOSE)('"')(3174,3175) + PsiWhiteSpace(' ')(3175,3176) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3176,3184) + PsiElement(CMD_PARAMETER)('-Recurse')(3176,3184) + PsiElement(NLS)('\n\n')(3184,3186) + PsiComment(COMMENT)('#This cmdlet gets information about cmdlets and other elements of commands.')(3186,3261) + PsiElement(NLS)('\n')(3261,3262) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3262,3307) + PowerShellCommandNameImplGen(COMMAND_NAME)(3262,3273) + PowerShellIdentifierImplGen(IDENTIFIER)(3262,3273) + PsiElement(GENERIC_ID_PART)('Get-Command')(3262,3273) + PsiWhiteSpace(' ')(3273,3274) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3274,3286) + PsiElement(CMD_PARAMETER)('-CommandType')(3274,3286) + PsiWhiteSpace(' ')(3286,3287) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3287,3292) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3287,3292) + PsiElement(SIMPLE_ID)('Alias')(3287,3292) + PsiWhiteSpace(' ')(3292,3293) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3293,3304) + PsiElement(CMD_PARAMETER)('-TotalCount')(3293,3304) + PsiWhiteSpace(' ')(3304,3305) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3305,3307) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(3305,3307) + PsiElement(DEC_INTEGER)('10')(3305,3307) + PsiElement(NLS)('\n')(3307,3308) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3308,3371) + PowerShellCommandNameImplGen(COMMAND_NAME)(3308,3319) + PowerShellIdentifierImplGen(IDENTIFIER)(3308,3319) + PsiElement(GENERIC_ID_PART)('Get-Command')(3308,3319) + PsiWhiteSpace(' ')(3319,3320) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3320,3325) + PsiElement(CMD_PARAMETER)('-Name')(3320,3325) + PsiWhiteSpace(' ')(3325,3326) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3326,3336) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3326,3336) + PsiElement(DQ_OPEN)('"')(3326,3327) + PsiElement(EXPANDABLE_STRING_PART)('Get-Date')(3327,3335) + PsiElement(DQ_CLOSE)('"')(3335,3336) + PsiWhiteSpace(' ')(3336,3337) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3337,3350) + PsiElement(CMD_PARAMETER)('-ArgumentList')(3337,3350) + PsiWhiteSpace(' ')(3350,3351) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3351,3356) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3351,3356) + PsiElement(DQ_OPEN)('"')(3351,3352) + PsiElement(EXPANDABLE_STRING_PART)('Day')(3352,3355) + PsiElement(DQ_CLOSE)('"')(3355,3356) + PsiElement(,)(',')(3356,3357) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3357,3364) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3357,3364) + PsiElement(DQ_OPEN)('"')(3357,3358) + PsiElement(EXPANDABLE_STRING_PART)('Month')(3358,3363) + PsiElement(DQ_CLOSE)('"')(3363,3364) + PsiElement(,)(',')(3364,3365) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3365,3371) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3365,3371) + PsiElement(DQ_OPEN)('"')(3365,3366) + PsiElement(EXPANDABLE_STRING_PART)('Year')(3366,3370) + PsiElement(DQ_CLOSE)('"')(3370,3371) + PsiElement(NLS)('\n')(3371,3372) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3372,3428) + PowerShellCommandNameImplGen(COMMAND_NAME)(3372,3383) + PowerShellIdentifierImplGen(IDENTIFIER)(3372,3383) + PsiElement(GENERIC_ID_PART)('Get-Command')(3372,3383) + PsiWhiteSpace(' ')(3383,3384) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3384,3389) + PsiElement(CMD_PARAMETER)('-Name')(3384,3389) + PsiWhiteSpace(' ')(3389,3390) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3390,3400) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3390,3400) + PsiElement(DQ_OPEN)('"')(3390,3391) + PsiElement(EXPANDABLE_STRING_PART)('Get-Date')(3391,3399) + PsiElement(DQ_CLOSE)('"')(3399,3400) + PsiWhiteSpace(' ')(3400,3401) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3401,3413) + PsiElement(CMD_PARAMETER)('-CommandType')(3401,3413) + PsiWhiteSpace(' ')(3413,3414) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3414,3420) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(3414,3420) + PsiElement(SIMPLE_ID)('Cmdlet')(3414,3420) + PsiWhiteSpace(' ')(3420,3421) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3421,3428) + PsiElement(CMD_PARAMETER)('-Syntax')(3421,3428) + PsiElement(NLS)('\n\n')(3428,3430) + PsiComment(COMMENT)('#Gets the content of the items (§3.3) at the specified locations.')(3430,3495) + PsiElement(NLS)('\n')(3495,3496) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3496,3541) + PowerShellCommandNameImplGen(COMMAND_NAME)(3496,3507) + PowerShellIdentifierImplGen(IDENTIFIER)(3496,3507) + PsiElement(GENERIC_ID_PART)('Get-Content')(3496,3507) + PsiWhiteSpace(' ')(3507,3508) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3508,3527) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3508,3527) + PsiElement(DQ_OPEN)('"')(3508,3509) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(3509,3526) + PsiElement(DQ_CLOSE)('"')(3526,3527) + PsiWhiteSpace(' ')(3527,3528) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3528,3539) + PsiElement(CMD_PARAMETER)('-TotalCount')(3528,3539) + PsiWhiteSpace(' ')(3539,3540) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3540,3541) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(3540,3541) + PsiElement(DEC_INTEGER)('3')(3540,3541) + PsiElement(NLS)('\n')(3541,3542) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3542,3565) + PowerShellCommandNameImplGen(COMMAND_NAME)(3542,3553) + PowerShellIdentifierImplGen(IDENTIFIER)(3542,3553) + PsiElement(GENERIC_ID_PART)('Get-Content')(3542,3553) + PsiWhiteSpace(' ')(3553,3554) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3554,3565) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3554,3565) + PsiElement(DQ_OPEN)('"')(3554,3555) + PsiElement(EXPANDABLE_STRING_PART)('Env:\Path')(3555,3564) + PsiElement(DQ_CLOSE)('"')(3564,3565) + PsiElement(NLS)('\n')(3565,3566) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3566,3595) + PowerShellCommandNameImplGen(COMMAND_NAME)(3566,3577) + PowerShellIdentifierImplGen(IDENTIFIER)(3566,3577) + PsiElement(GENERIC_ID_PART)('Get-Content')(3566,3577) + PsiWhiteSpace(' ')(3577,3578) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3578,3595) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3578,3595) + PsiElement(DQ_OPEN)('"')(3578,3579) + PsiElement(EXPANDABLE_STRING_PART)('Variable:\Count')(3579,3594) + PsiElement(DQ_CLOSE)('"')(3594,3595) + PsiElement(NLS)('\n\n')(3595,3597) + PsiComment(COMMENT)('#Gets a credential object (§4.5.23) based on a user name and password.')(3597,3667) + PsiElement(NLS)('\n')(3667,3668) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(3668,3687) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(3668,3670) + PsiElement($)('$')(3668,3669) + PowerShellIdentifierImplGen(IDENTIFIER)(3669,3670) + PsiElement(SIMPLE_ID)('v')(3669,3670) + PsiWhiteSpace(' ')(3670,3671) + PsiElement(=)('=')(3671,3672) + PsiWhiteSpace(' ')(3672,3673) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3673,3687) + PowerShellCommandNameImplGen(COMMAND_NAME)(3673,3687) + PowerShellIdentifierImplGen(IDENTIFIER)(3673,3687) + PsiElement(GENERIC_ID_PART)('Get-Credential')(3673,3687) + PsiElement(NLS)('\n')(3687,3688) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(3688,3728) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(3688,3690) + PsiElement($)('$')(3688,3689) + PowerShellIdentifierImplGen(IDENTIFIER)(3689,3690) + PsiElement(SIMPLE_ID)('v')(3689,3690) + PsiWhiteSpace(' ')(3690,3691) + PsiElement(=)('=')(3691,3692) PsiWhiteSpace(' ')(3692,3693) - PsiElement(=)('=')(3693,3694) - PsiWhiteSpace(' ')(3694,3695) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3695,3709) - PowerShellCommandNameImplGen(COMMAND_NAME)(3695,3709) - PowerShellIdentifierImplGen(IDENTIFIER)(3695,3709) - PsiElement(GENERIC_ID_PART)('Get-Credential')(3695,3709) - PsiElement(NLS)('\n')(3709,3710) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(3710,3750) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(3710,3712) - PsiElement($)('$')(3710,3711) - PowerShellIdentifierImplGen(IDENTIFIER)(3711,3712) - PsiElement(SIMPLE_ID)('v')(3711,3712) - PsiWhiteSpace(' ')(3712,3713) - PsiElement(=)('=')(3713,3714) - PsiWhiteSpace(' ')(3714,3715) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3715,3750) - PowerShellCommandNameImplGen(COMMAND_NAME)(3715,3729) - PowerShellIdentifierImplGen(IDENTIFIER)(3715,3729) - PsiElement(GENERIC_ID_PART)('Get-Credential')(3715,3729) - PsiWhiteSpace(' ')(3729,3730) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3730,3741) - PsiElement(CMD_PARAMETER)('-Credential')(3730,3741) - PsiWhiteSpace(' ')(3741,3742) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3742,3750) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3742,3750) - PsiElement(DQ_OPEN)('"')(3742,3743) - PsiElement(EXPANDABLE_STRING_PART)('User10')(3743,3749) - PsiElement(DQ_CLOSE)('"')(3749,3750) - PsiElement(NLS)('\n\n')(3750,3752) - PsiComment(COMMENT)('#This cmdlet gets a date-time object (§4.5.19) that represents the current or the specified date.')(3752,3849) - PsiElement(NLS)('\n')(3849,3850) - PsiComment(COMMENT)('#When run on 2010-03-15 at 12:38:01')(3850,3885) - PsiElement(NLS)('\n')(3885,3886) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3886,3923) - PowerShellCommandNameImplGen(COMMAND_NAME)(3886,3894) - PowerShellIdentifierImplGen(IDENTIFIER)(3886,3894) - PsiElement(GENERIC_ID_PART)('Get-Date')(3886,3894) - PsiWhiteSpace(' ')(3894,3895) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3895,3900) - PsiElement(CMD_PARAMETER)('-Date')(3895,3900) - PsiWhiteSpace(' ')(3900,3901) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3901,3923) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3901,3923) - PsiElement(DQ_OPEN)('"')(3901,3902) - PsiElement(EXPANDABLE_STRING_PART)('2010-2-1 10:12:14 pm')(3902,3922) - PsiElement(DQ_CLOSE)('"')(3922,3923) - PsiWhiteSpace('\t\t\t')(3923,3926) - PsiComment(COMMENT)('# 02/01/2010 22:12:14')(3926,3947) - PsiElement(NLS)('\n')(3947,3948) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3948,3968) - PowerShellCommandNameImplGen(COMMAND_NAME)(3948,3956) - PowerShellIdentifierImplGen(IDENTIFIER)(3948,3956) - PsiElement(GENERIC_ID_PART)('Get-Date')(3948,3956) - PsiWhiteSpace(' ')(3956,3957) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3957,3964) - PsiElement(CMD_PARAMETER)('-Format')(3957,3964) - PsiWhiteSpace(' ')(3964,3965) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3965,3968) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3965,3968) - PsiElement(DQ_OPEN)('"')(3965,3966) - PsiElement(EXPANDABLE_STRING_PART)('m')(3966,3967) - PsiElement(DQ_CLOSE)('"')(3967,3968) - PsiWhiteSpace('\t\t\t\t\t\t\t\t\t')(3968,3977) - PsiComment(COMMENT)('# March 15')(3977,3987) - PsiElement(NLS)('\n')(3987,3988) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3988,4018) - PowerShellCommandNameImplGen(COMMAND_NAME)(3988,3996) - PowerShellIdentifierImplGen(IDENTIFIER)(3988,3996) - PsiElement(GENERIC_ID_PART)('Get-Date')(3988,3996) - PsiWhiteSpace(' ')(3996,3997) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3997,4004) - PsiElement(CMD_PARAMETER)('-Format')(3997,4004) - PsiWhiteSpace(' ')(4004,4005) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4005,4018) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4005,4018) - PsiElement(DQ_OPEN)('"')(4005,4006) - PsiElement(EXPANDABLE_STRING_PART)('dd-MMM-yyyy')(4006,4017) - PsiElement(DQ_CLOSE)('"')(4017,4018) - PsiWhiteSpace('\t\t\t\t\t')(4018,4023) - PsiComment(COMMENT)('# 15-Mar-2010')(4023,4036) - PsiElement(NLS)('\n')(4036,4037) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4037,4071) - PowerShellCommandNameImplGen(COMMAND_NAME)(4037,4045) - PowerShellIdentifierImplGen(IDENTIFIER)(4037,4045) - PsiElement(GENERIC_ID_PART)('Get-Date')(4037,4045) - PsiWhiteSpace(' ')(4045,4046) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4046,4054) - PsiElement(CMD_PARAMETER)('-UFormat')(4046,4054) - PsiWhiteSpace(' ')(4054,4055) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4055,4071) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4055,4071) - PsiElement(DQ_OPEN)('"')(4055,4056) - PsiElement(EXPANDABLE_STRING_PART)('%Y-%m-%d %A %Z')(4056,4070) - PsiElement(DQ_CLOSE)('"')(4070,4071) - PsiWhiteSpace('\t\t\t\t')(4071,4075) - PsiComment(COMMENT)('# 2010-03-15 Monday -04')(4075,4098) - PsiElement(NLS)('\n')(4098,4099) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4099,4134) - PowerShellCommandNameImplGen(COMMAND_NAME)(4099,4107) - PowerShellIdentifierImplGen(IDENTIFIER)(4099,4107) - PsiElement(GENERIC_ID_PART)('Get-Date')(4099,4107) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3693,3728) + PowerShellCommandNameImplGen(COMMAND_NAME)(3693,3707) + PowerShellIdentifierImplGen(IDENTIFIER)(3693,3707) + PsiElement(GENERIC_ID_PART)('Get-Credential')(3693,3707) + PsiWhiteSpace(' ')(3707,3708) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3708,3719) + PsiElement(CMD_PARAMETER)('-Credential')(3708,3719) + PsiWhiteSpace(' ')(3719,3720) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3720,3728) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3720,3728) + PsiElement(DQ_OPEN)('"')(3720,3721) + PsiElement(EXPANDABLE_STRING_PART)('User10')(3721,3727) + PsiElement(DQ_CLOSE)('"')(3727,3728) + PsiElement(NLS)('\n\n')(3728,3730) + PsiComment(COMMENT)('#This cmdlet gets a date-time object (§4.5.19) that represents the current or the specified date.')(3730,3827) + PsiElement(NLS)('\n')(3827,3828) + PsiComment(COMMENT)('#When run on 2010-03-15 at 12:38:01')(3828,3863) + PsiElement(NLS)('\n')(3863,3864) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3864,3901) + PowerShellCommandNameImplGen(COMMAND_NAME)(3864,3872) + PowerShellIdentifierImplGen(IDENTIFIER)(3864,3872) + PsiElement(GENERIC_ID_PART)('Get-Date')(3864,3872) + PsiWhiteSpace(' ')(3872,3873) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3873,3878) + PsiElement(CMD_PARAMETER)('-Date')(3873,3878) + PsiWhiteSpace(' ')(3878,3879) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3879,3901) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3879,3901) + PsiElement(DQ_OPEN)('"')(3879,3880) + PsiElement(EXPANDABLE_STRING_PART)('2010-2-1 10:12:14 pm')(3880,3900) + PsiElement(DQ_CLOSE)('"')(3900,3901) + PsiWhiteSpace('\t\t\t')(3901,3904) + PsiComment(COMMENT)('# 02/01/2010 22:12:14')(3904,3925) + PsiElement(NLS)('\n')(3925,3926) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3926,3946) + PowerShellCommandNameImplGen(COMMAND_NAME)(3926,3934) + PowerShellIdentifierImplGen(IDENTIFIER)(3926,3934) + PsiElement(GENERIC_ID_PART)('Get-Date')(3926,3934) + PsiWhiteSpace(' ')(3934,3935) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3935,3942) + PsiElement(CMD_PARAMETER)('-Format')(3935,3942) + PsiWhiteSpace(' ')(3942,3943) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3943,3946) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3943,3946) + PsiElement(DQ_OPEN)('"')(3943,3944) + PsiElement(EXPANDABLE_STRING_PART)('m')(3944,3945) + PsiElement(DQ_CLOSE)('"')(3945,3946) + PsiWhiteSpace('\t\t\t\t\t\t\t\t\t')(3946,3955) + PsiComment(COMMENT)('# March 15')(3955,3965) + PsiElement(NLS)('\n')(3965,3966) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(3966,3996) + PowerShellCommandNameImplGen(COMMAND_NAME)(3966,3974) + PowerShellIdentifierImplGen(IDENTIFIER)(3966,3974) + PsiElement(GENERIC_ID_PART)('Get-Date')(3966,3974) + PsiWhiteSpace(' ')(3974,3975) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(3975,3982) + PsiElement(CMD_PARAMETER)('-Format')(3975,3982) + PsiWhiteSpace(' ')(3982,3983) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(3983,3996) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(3983,3996) + PsiElement(DQ_OPEN)('"')(3983,3984) + PsiElement(EXPANDABLE_STRING_PART)('dd-MMM-yyyy')(3984,3995) + PsiElement(DQ_CLOSE)('"')(3995,3996) + PsiWhiteSpace('\t\t\t\t\t')(3996,4001) + PsiComment(COMMENT)('# 15-Mar-2010')(4001,4014) + PsiElement(NLS)('\n')(4014,4015) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4015,4049) + PowerShellCommandNameImplGen(COMMAND_NAME)(4015,4023) + PowerShellIdentifierImplGen(IDENTIFIER)(4015,4023) + PsiElement(GENERIC_ID_PART)('Get-Date')(4015,4023) + PsiWhiteSpace(' ')(4023,4024) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4024,4032) + PsiElement(CMD_PARAMETER)('-UFormat')(4024,4032) + PsiWhiteSpace(' ')(4032,4033) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4033,4049) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4033,4049) + PsiElement(DQ_OPEN)('"')(4033,4034) + PsiElement(EXPANDABLE_STRING_PART)('%Y-%m-%d %A %Z')(4034,4048) + PsiElement(DQ_CLOSE)('"')(4048,4049) + PsiWhiteSpace('\t\t\t\t')(4049,4053) + PsiComment(COMMENT)('# 2010-03-15 Monday -04')(4053,4076) + PsiElement(NLS)('\n')(4076,4077) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4077,4112) + PowerShellCommandNameImplGen(COMMAND_NAME)(4077,4085) + PowerShellIdentifierImplGen(IDENTIFIER)(4077,4085) + PsiElement(GENERIC_ID_PART)('Get-Date')(4077,4085) + PsiWhiteSpace(' ')(4085,4086) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4086,4090) + PsiElement(CMD_PARAMETER)('-Day')(4086,4090) + PsiWhiteSpace(' ')(4090,4091) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4091,4092) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4091,4092) + PsiElement(DEC_INTEGER)('2')(4091,4092) + PsiWhiteSpace(' ')(4092,4093) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4093,4099) + PsiElement(CMD_PARAMETER)('-Month')(4093,4099) + PsiWhiteSpace(' ')(4099,4100) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4100,4101) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4100,4101) + PsiElement(DEC_INTEGER)('3')(4100,4101) + PsiWhiteSpace(' ')(4101,4102) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4102,4107) + PsiElement(CMD_PARAMETER)('-Year')(4102,4107) PsiWhiteSpace(' ')(4107,4108) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4108,4112) - PsiElement(CMD_PARAMETER)('-Day')(4108,4112) - PsiWhiteSpace(' ')(4112,4113) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4113,4114) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4113,4114) - PsiElement(DEC_INTEGER)('2')(4113,4114) - PsiWhiteSpace(' ')(4114,4115) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4115,4121) - PsiElement(CMD_PARAMETER)('-Month')(4115,4121) - PsiWhiteSpace(' ')(4121,4122) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4122,4123) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4122,4123) - PsiElement(DEC_INTEGER)('3')(4122,4123) - PsiWhiteSpace(' ')(4123,4124) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4124,4129) - PsiElement(CMD_PARAMETER)('-Year')(4124,4129) - PsiWhiteSpace(' ')(4129,4130) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4130,4134) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4130,4134) - PsiElement(DEC_INTEGER)('2006')(4130,4134) - PsiWhiteSpace('\t\t\t\t')(4134,4138) - PsiComment(COMMENT)('# 03/02/2006 12:38:01')(4138,4159) - PsiElement(NLS)('\n')(4159,4160) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4160,4198) - PowerShellCommandNameImplGen(COMMAND_NAME)(4160,4168) - PowerShellIdentifierImplGen(IDENTIFIER)(4160,4168) - PsiElement(GENERIC_ID_PART)('Get-Date')(4160,4168) - PsiWhiteSpace(' ')(4168,4169) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4169,4174) - PsiElement(CMD_PARAMETER)('-Hour')(4169,4174) - PsiWhiteSpace(' ')(4174,4175) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4175,4177) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4175,4177) - PsiElement(DEC_INTEGER)('11')(4175,4177) - PsiWhiteSpace(' ')(4177,4178) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4178,4185) - PsiElement(CMD_PARAMETER)('-Minute')(4178,4185) - PsiWhiteSpace(' ')(4185,4186) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4186,4187) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4186,4187) - PsiElement(DEC_INTEGER)('3')(4186,4187) - PsiWhiteSpace(' ')(4187,4188) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4188,4195) - PsiElement(CMD_PARAMETER)('-Second')(4188,4195) - PsiWhiteSpace(' ')(4195,4196) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4196,4198) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4196,4198) - PsiElement(DEC_INTEGER)('23')(4196,4198) - PsiWhiteSpace('\t\t\t')(4198,4201) - PsiComment(COMMENT)('# 03/15/2010 11:03:23')(4201,4222) - PsiElement(NLS)('\n\n')(4222,4224) - PsiComment(COMMENT)('#Displays information about the specified command. See §A for information about creating script files that contain help comments.')(4224,4353) - PsiElement(NLS)('\n')(4353,4354) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4354,4368) - PowerShellCommandNameImplGen(COMMAND_NAME)(4354,4362) - PowerShellIdentifierImplGen(IDENTIFIER)(4354,4362) - PsiElement(GENERIC_ID_PART)('Get-Help')(4354,4362) - PsiWhiteSpace(' ')(4362,4363) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4363,4368) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4363,4368) - PsiElement(SIMPLE_ID)('Get')(4363,4366) - PsiElement(DASH)('-')(4366,4367) - PsiElement(*)('*')(4367,4368) - PsiElement(NLS)('\n')(4368,4369) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4369,4399) - PowerShellCommandNameImplGen(COMMAND_NAME)(4369,4377) - PowerShellIdentifierImplGen(IDENTIFIER)(4369,4377) - PsiElement(GENERIC_ID_PART)('Get-Help')(4369,4377) - PsiWhiteSpace(' ')(4377,4378) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4378,4389) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4378,4389) - PsiElement(GENERIC_ID_PART)('Add-Content')(4378,4389) - PsiWhiteSpace(' ')(4389,4390) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4390,4399) - PsiElement(CMD_PARAMETER)('-Examples')(4390,4399) - PsiElement(NLS)('\n')(4399,4400) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4400,4426) - PowerShellCommandNameImplGen(COMMAND_NAME)(4400,4408) - PowerShellIdentifierImplGen(IDENTIFIER)(4400,4408) - PsiElement(GENERIC_ID_PART)('Get-Help')(4400,4408) - PsiWhiteSpace(' ')(4408,4409) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4409,4420) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4409,4420) - PsiElement(GENERIC_ID_PART)('Add-Content')(4409,4420) - PsiWhiteSpace(' ')(4420,4421) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4421,4426) - PsiElement(CMD_PARAMETER)('-Full')(4421,4426) - PsiElement(NLS)('\n')(4426,4427) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4427,4461) - PowerShellCommandNameImplGen(COMMAND_NAME)(4427,4435) - PowerShellIdentifierImplGen(IDENTIFIER)(4427,4435) - PsiElement(GENERIC_ID_PART)('Get-Help')(4427,4435) - PsiWhiteSpace(' ')(4435,4436) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4436,4461) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4436,4461) - PowerShellPathItemImplGen(PATH_ITEM)(4436,4437) - PsiElement(SIMPLE_ID)('E')(4436,4437) - PsiElement(:)(':')(4437,4438) - PsiElement(\)('\')(4438,4439) - PowerShellPathItemImplGen(PATH_ITEM)(4439,4446) - PsiElement(SIMPLE_ID)('Scripts')(4439,4446) - PsiElement(\)('\')(4446,4447) - PowerShellPathItemImplGen(PATH_ITEM)(4447,4451) - PsiElement(SIMPLE_ID)('Help')(4447,4451) - PsiElement(\)('\')(4451,4452) - PowerShellPathItemImplGen(PATH_ITEM)(4452,4461) - PsiElement(GENERIC_ID_PART)('Get-Power')(4452,4461) - PsiElement(NLS)('\n\n')(4461,4463) - PsiComment(COMMENT)('#Gets one or more items from the specified locations.')(4463,4516) - PsiElement(NLS)('\n')(4516,4517) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4517,4552) - PowerShellCommandNameImplGen(COMMAND_NAME)(4517,4525) - PowerShellIdentifierImplGen(IDENTIFIER)(4517,4525) - PsiElement(GENERIC_ID_PART)('Get-Item')(4517,4525) - PsiWhiteSpace(' ')(4525,4526) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4526,4531) - PsiElement(CMD_PARAMETER)('-Path')(4526,4531) - PsiWhiteSpace(' ')(4531,4532) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4532,4541) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4532,4541) - PsiElement(DQ_OPEN)('"')(4532,4533) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(4533,4540) - PsiElement(DQ_CLOSE)('"')(4540,4541) - PsiElement(,)(',')(4541,4542) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4542,4552) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4542,4552) - PsiElement(DQ_OPEN)('"')(4542,4543) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test3')(4543,4551) - PsiElement(DQ_CLOSE)('"')(4551,4552) - PsiElement(NLS)('\n')(4552,4553) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4553,4579) - PowerShellCommandNameImplGen(COMMAND_NAME)(4553,4561) - PowerShellIdentifierImplGen(IDENTIFIER)(4553,4561) - PsiElement(GENERIC_ID_PART)('Get-Item')(4553,4561) - PsiWhiteSpace(' ')(4561,4562) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4562,4566) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4562,4566) - PowerShellPathItemImplGen(PATH_ITEM)(4562,4565) - PsiElement(SIMPLE_ID)('Env')(4562,4565) - PsiElement(:)(':')(4565,4566) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4566,4570) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4566,4570) - PsiElement(SIMPLE_ID)('Day1')(4566,4570) - PsiElement(,)(',')(4570,4571) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4571,4575) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4571,4575) - PowerShellPathItemImplGen(PATH_ITEM)(4571,4574) - PsiElement(SIMPLE_ID)('Env')(4571,4574) - PsiElement(:)(':')(4574,4575) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4575,4579) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4575,4579) - PsiElement(SIMPLE_ID)('Day2')(4575,4579) - PsiElement(NLS)('\n')(4579,4580) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4580,4612) - PowerShellCommandNameImplGen(COMMAND_NAME)(4580,4588) - PowerShellIdentifierImplGen(IDENTIFIER)(4580,4588) - PsiElement(GENERIC_ID_PART)('Get-Item')(4580,4588) - PsiWhiteSpace(' ')(4588,4589) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4589,4594) - PsiElement(CMD_PARAMETER)('-Path')(4589,4594) - PsiWhiteSpace(' ')(4594,4595) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4595,4612) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4595,4612) - PsiElement(DQ_OPEN)('"')(4595,4596) - PsiElement(EXPANDABLE_STRING_PART)('Function:MyFun2')(4596,4611) - PsiElement(DQ_CLOSE)('"')(4611,4612) - PsiElement(NLS)('\n')(4612,4613) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4613,4645) - PowerShellCommandNameImplGen(COMMAND_NAME)(4613,4621) - PowerShellIdentifierImplGen(IDENTIFIER)(4613,4621) - PsiElement(GENERIC_ID_PART)('Get-Item')(4613,4621) - PsiWhiteSpace(' ')(4621,4622) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4622,4627) - PsiElement(CMD_PARAMETER)('-Path')(4622,4627) - PsiWhiteSpace(' ')(4627,4628) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4628,4645) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4628,4645) - PsiElement(DQ_OPEN)('"')(4628,4629) - PsiElement(EXPANDABLE_STRING_PART)('Variable:MyVar1')(4629,4644) - PsiElement(DQ_CLOSE)('"')(4644,4645) - PsiElement(NLS)('\n\n')(4645,4647) - PsiComment(COMMENT)('#Gets information about the current working location (§3.1.4) for the specified drive(s), or the working locations for the specified stack(s).')(4647,4789) - PsiElement(NLS)('\n')(4789,4790) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4790,4802) - PowerShellCommandNameImplGen(COMMAND_NAME)(4790,4802) - PowerShellIdentifierImplGen(IDENTIFIER)(4790,4802) - PsiElement(GENERIC_ID_PART)('Get-Location')(4790,4802) - PsiWhiteSpace('\t\t\t\t\t\t\t')(4802,4809) - PsiComment(COMMENT)('# get location of current drive')(4809,4840) - PsiElement(NLS)('\n')(4840,4841) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4841,4868) - PowerShellCommandNameImplGen(COMMAND_NAME)(4841,4853) - PowerShellIdentifierImplGen(IDENTIFIER)(4841,4853) - PsiElement(GENERIC_ID_PART)('Get-Location')(4841,4853) - PsiWhiteSpace(' ')(4853,4854) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4854,4862) - PsiElement(CMD_PARAMETER)('-PSDrive')(4854,4862) - PsiWhiteSpace(' ')(4862,4863) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4863,4864) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4863,4864) - PsiElement(SIMPLE_ID)('G')(4863,4864) - PsiElement(,)(',')(4864,4865) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4865,4866) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4865,4866) - PsiElement(SIMPLE_ID)('C')(4865,4866) - PsiElement(,)(',')(4866,4867) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4867,4868) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4867,4868) - PsiElement(SIMPLE_ID)('D')(4867,4868) - PsiWhiteSpace('\t\t')(4868,4870) - PsiComment(COMMENT)('# get location of specified drives')(4870,4904) - PsiElement(NLS)('\n')(4904,4905) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4905,4924) - PowerShellCommandNameImplGen(COMMAND_NAME)(4905,4917) - PowerShellIdentifierImplGen(IDENTIFIER)(4905,4917) - PsiElement(GENERIC_ID_PART)('Get-Location')(4905,4917) - PsiWhiteSpace(' ')(4917,4918) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4918,4924) - PsiElement(CMD_PARAMETER)('-Stack')(4918,4924) - PsiWhiteSpace('\t\t\t\t\t')(4924,4929) - PsiComment(COMMENT)('# get all locations from current stack')(4929,4967) - PsiElement(NLS)('\n')(4967,4968) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4968,5009) - PowerShellCommandNameImplGen(COMMAND_NAME)(4968,4980) - PowerShellIdentifierImplGen(IDENTIFIER)(4968,4980) - PsiElement(GENERIC_ID_PART)('Get-Location')(4968,4980) - PsiWhiteSpace(' ')(4980,4981) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4981,4991) - PsiElement(CMD_PARAMETER)('-StackName')(4981,4991) - PsiWhiteSpace(' ')(4991,4992) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4992,5000) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4992,5000) - PsiElement(DQ_OPEN)('"')(4992,4993) - PsiElement(EXPANDABLE_STRING_PART)('Stack2')(4993,4999) - PsiElement(DQ_CLOSE)('"')(4999,5000) - PsiElement(,)(',')(5000,5001) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5001,5009) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5001,5009) - PsiElement(DQ_OPEN)('"')(5001,5002) - PsiElement(EXPANDABLE_STRING_PART)('Stack1')(5002,5008) - PsiElement(DQ_CLOSE)('"')(5008,5009) - PsiWhiteSpace(' ')(5009,5010) - PsiComment(COMMENT)('# get all locations from named stacks')(5010,5047) - PsiElement(NLS)('\n\n')(5047,5049) - PsiComment(COMMENT)('#Gets the specified members of an object.')(5049,5090) - PsiElement(NLS)('\n')(5090,5091) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(5091,5158) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5091,5093) - PsiElement($)('$')(5091,5092) - PowerShellIdentifierImplGen(IDENTIFIER)(5092,5093) - PsiElement(SIMPLE_ID)('v')(5092,5093) - PsiWhiteSpace(' ')(5093,5094) - PsiElement(=)('=')(5094,5095) - PsiWhiteSpace(' ')(5095,5096) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5096,5158) - PowerShellCommandNameImplGen(COMMAND_NAME)(5096,5104) - PowerShellIdentifierImplGen(IDENTIFIER)(5096,5104) - PsiElement(GENERIC_ID_PART)('New-Item')(5096,5104) - PsiWhiteSpace(' ')(5104,5105) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5105,5111) - PsiElement(CMD_PARAMETER)('-Force')(5105,5111) - PsiWhiteSpace(' ')(5111,5112) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5112,5117) - PsiElement(CMD_PARAMETER)('-Path')(5112,5117) - PsiWhiteSpace(' ')(5117,5118) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5118,5123) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5118,5123) - PsiElement(DQ_OPEN)('"')(5118,5119) - PsiElement(EXPANDABLE_STRING_PART)('I:\')(5119,5122) - PsiElement(DQ_CLOSE)('"')(5122,5123) - PsiWhiteSpace(' ')(5123,5124) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5124,5129) - PsiElement(CMD_PARAMETER)('-Name')(5124,5129) - PsiWhiteSpace(' ')(5129,5130) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5130,5136) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5130,5136) - PsiElement(DQ_OPEN)('"')(5130,5131) - PsiElement(EXPANDABLE_STRING_PART)('Test')(5131,5135) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4108,4112) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4108,4112) + PsiElement(DEC_INTEGER)('2006')(4108,4112) + PsiWhiteSpace('\t\t\t\t')(4112,4116) + PsiComment(COMMENT)('# 03/02/2006 12:38:01')(4116,4137) + PsiElement(NLS)('\n')(4137,4138) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4138,4176) + PowerShellCommandNameImplGen(COMMAND_NAME)(4138,4146) + PowerShellIdentifierImplGen(IDENTIFIER)(4138,4146) + PsiElement(GENERIC_ID_PART)('Get-Date')(4138,4146) + PsiWhiteSpace(' ')(4146,4147) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4147,4152) + PsiElement(CMD_PARAMETER)('-Hour')(4147,4152) + PsiWhiteSpace(' ')(4152,4153) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4153,4155) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4153,4155) + PsiElement(DEC_INTEGER)('11')(4153,4155) + PsiWhiteSpace(' ')(4155,4156) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4156,4163) + PsiElement(CMD_PARAMETER)('-Minute')(4156,4163) + PsiWhiteSpace(' ')(4163,4164) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4164,4165) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4164,4165) + PsiElement(DEC_INTEGER)('3')(4164,4165) + PsiWhiteSpace(' ')(4165,4166) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4166,4173) + PsiElement(CMD_PARAMETER)('-Second')(4166,4173) + PsiWhiteSpace(' ')(4173,4174) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4174,4176) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(4174,4176) + PsiElement(DEC_INTEGER)('23')(4174,4176) + PsiWhiteSpace('\t\t\t')(4176,4179) + PsiComment(COMMENT)('# 03/15/2010 11:03:23')(4179,4200) + PsiElement(NLS)('\n\n')(4200,4202) + PsiComment(COMMENT)('#Displays information about the specified command. See §A for information about creating script files that contain help comments.')(4202,4331) + PsiElement(NLS)('\n')(4331,4332) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4332,4346) + PowerShellCommandNameImplGen(COMMAND_NAME)(4332,4340) + PowerShellIdentifierImplGen(IDENTIFIER)(4332,4340) + PsiElement(GENERIC_ID_PART)('Get-Help')(4332,4340) + PsiWhiteSpace(' ')(4340,4341) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4341,4346) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4341,4346) + PsiElement(SIMPLE_ID)('Get')(4341,4344) + PsiElement(DASH)('-')(4344,4345) + PsiElement(*)('*')(4345,4346) + PsiElement(NLS)('\n')(4346,4347) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4347,4377) + PowerShellCommandNameImplGen(COMMAND_NAME)(4347,4355) + PowerShellIdentifierImplGen(IDENTIFIER)(4347,4355) + PsiElement(GENERIC_ID_PART)('Get-Help')(4347,4355) + PsiWhiteSpace(' ')(4355,4356) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4356,4367) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4356,4367) + PsiElement(GENERIC_ID_PART)('Add-Content')(4356,4367) + PsiWhiteSpace(' ')(4367,4368) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4368,4377) + PsiElement(CMD_PARAMETER)('-Examples')(4368,4377) + PsiElement(NLS)('\n')(4377,4378) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4378,4404) + PowerShellCommandNameImplGen(COMMAND_NAME)(4378,4386) + PowerShellIdentifierImplGen(IDENTIFIER)(4378,4386) + PsiElement(GENERIC_ID_PART)('Get-Help')(4378,4386) + PsiWhiteSpace(' ')(4386,4387) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4387,4398) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4387,4398) + PsiElement(GENERIC_ID_PART)('Add-Content')(4387,4398) + PsiWhiteSpace(' ')(4398,4399) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4399,4404) + PsiElement(CMD_PARAMETER)('-Full')(4399,4404) + PsiElement(NLS)('\n')(4404,4405) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4405,4439) + PowerShellCommandNameImplGen(COMMAND_NAME)(4405,4413) + PowerShellIdentifierImplGen(IDENTIFIER)(4405,4413) + PsiElement(GENERIC_ID_PART)('Get-Help')(4405,4413) + PsiWhiteSpace(' ')(4413,4414) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4414,4439) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4414,4439) + PowerShellPathItemImplGen(PATH_ITEM)(4414,4415) + PsiElement(SIMPLE_ID)('E')(4414,4415) + PsiElement(:)(':')(4415,4416) + PsiElement(\)('\')(4416,4417) + PowerShellPathItemImplGen(PATH_ITEM)(4417,4424) + PsiElement(SIMPLE_ID)('Scripts')(4417,4424) + PsiElement(\)('\')(4424,4425) + PowerShellPathItemImplGen(PATH_ITEM)(4425,4429) + PsiElement(SIMPLE_ID)('Help')(4425,4429) + PsiElement(\)('\')(4429,4430) + PowerShellPathItemImplGen(PATH_ITEM)(4430,4439) + PsiElement(GENERIC_ID_PART)('Get-Power')(4430,4439) + PsiElement(NLS)('\n\n')(4439,4441) + PsiComment(COMMENT)('#Gets one or more items from the specified locations.')(4441,4494) + PsiElement(NLS)('\n')(4494,4495) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4495,4530) + PowerShellCommandNameImplGen(COMMAND_NAME)(4495,4503) + PowerShellIdentifierImplGen(IDENTIFIER)(4495,4503) + PsiElement(GENERIC_ID_PART)('Get-Item')(4495,4503) + PsiWhiteSpace(' ')(4503,4504) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4504,4509) + PsiElement(CMD_PARAMETER)('-Path')(4504,4509) + PsiWhiteSpace(' ')(4509,4510) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4510,4519) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4510,4519) + PsiElement(DQ_OPEN)('"')(4510,4511) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(4511,4518) + PsiElement(DQ_CLOSE)('"')(4518,4519) + PsiElement(,)(',')(4519,4520) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4520,4530) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4520,4530) + PsiElement(DQ_OPEN)('"')(4520,4521) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test3')(4521,4529) + PsiElement(DQ_CLOSE)('"')(4529,4530) + PsiElement(NLS)('\n')(4530,4531) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4531,4557) + PowerShellCommandNameImplGen(COMMAND_NAME)(4531,4539) + PowerShellIdentifierImplGen(IDENTIFIER)(4531,4539) + PsiElement(GENERIC_ID_PART)('Get-Item')(4531,4539) + PsiWhiteSpace(' ')(4539,4540) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4540,4544) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4540,4544) + PowerShellPathItemImplGen(PATH_ITEM)(4540,4543) + PsiElement(SIMPLE_ID)('Env')(4540,4543) + PsiElement(:)(':')(4543,4544) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4544,4548) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4544,4548) + PsiElement(SIMPLE_ID)('Day1')(4544,4548) + PsiElement(,)(',')(4548,4549) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4549,4553) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(4549,4553) + PowerShellPathItemImplGen(PATH_ITEM)(4549,4552) + PsiElement(SIMPLE_ID)('Env')(4549,4552) + PsiElement(:)(':')(4552,4553) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4553,4557) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4553,4557) + PsiElement(SIMPLE_ID)('Day2')(4553,4557) + PsiElement(NLS)('\n')(4557,4558) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4558,4590) + PowerShellCommandNameImplGen(COMMAND_NAME)(4558,4566) + PowerShellIdentifierImplGen(IDENTIFIER)(4558,4566) + PsiElement(GENERIC_ID_PART)('Get-Item')(4558,4566) + PsiWhiteSpace(' ')(4566,4567) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4567,4572) + PsiElement(CMD_PARAMETER)('-Path')(4567,4572) + PsiWhiteSpace(' ')(4572,4573) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4573,4590) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4573,4590) + PsiElement(DQ_OPEN)('"')(4573,4574) + PsiElement(EXPANDABLE_STRING_PART)('Function:MyFun2')(4574,4589) + PsiElement(DQ_CLOSE)('"')(4589,4590) + PsiElement(NLS)('\n')(4590,4591) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4591,4623) + PowerShellCommandNameImplGen(COMMAND_NAME)(4591,4599) + PowerShellIdentifierImplGen(IDENTIFIER)(4591,4599) + PsiElement(GENERIC_ID_PART)('Get-Item')(4591,4599) + PsiWhiteSpace(' ')(4599,4600) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4600,4605) + PsiElement(CMD_PARAMETER)('-Path')(4600,4605) + PsiWhiteSpace(' ')(4605,4606) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4606,4623) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4606,4623) + PsiElement(DQ_OPEN)('"')(4606,4607) + PsiElement(EXPANDABLE_STRING_PART)('Variable:MyVar1')(4607,4622) + PsiElement(DQ_CLOSE)('"')(4622,4623) + PsiElement(NLS)('\n\n')(4623,4625) + PsiComment(COMMENT)('#Gets information about the current working location (§3.1.4) for the specified drive(s), or the working locations for the specified stack(s).')(4625,4767) + PsiElement(NLS)('\n')(4767,4768) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4768,4780) + PowerShellCommandNameImplGen(COMMAND_NAME)(4768,4780) + PowerShellIdentifierImplGen(IDENTIFIER)(4768,4780) + PsiElement(GENERIC_ID_PART)('Get-Location')(4768,4780) + PsiWhiteSpace('\t\t\t\t\t\t\t')(4780,4787) + PsiComment(COMMENT)('# get location of current drive')(4787,4818) + PsiElement(NLS)('\n')(4818,4819) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4819,4846) + PowerShellCommandNameImplGen(COMMAND_NAME)(4819,4831) + PowerShellIdentifierImplGen(IDENTIFIER)(4819,4831) + PsiElement(GENERIC_ID_PART)('Get-Location')(4819,4831) + PsiWhiteSpace(' ')(4831,4832) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4832,4840) + PsiElement(CMD_PARAMETER)('-PSDrive')(4832,4840) + PsiWhiteSpace(' ')(4840,4841) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4841,4842) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4841,4842) + PsiElement(SIMPLE_ID)('G')(4841,4842) + PsiElement(,)(',')(4842,4843) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4843,4844) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4843,4844) + PsiElement(SIMPLE_ID)('C')(4843,4844) + PsiElement(,)(',')(4844,4845) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4845,4846) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(4845,4846) + PsiElement(SIMPLE_ID)('D')(4845,4846) + PsiWhiteSpace('\t\t')(4846,4848) + PsiComment(COMMENT)('# get location of specified drives')(4848,4882) + PsiElement(NLS)('\n')(4882,4883) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4883,4902) + PowerShellCommandNameImplGen(COMMAND_NAME)(4883,4895) + PowerShellIdentifierImplGen(IDENTIFIER)(4883,4895) + PsiElement(GENERIC_ID_PART)('Get-Location')(4883,4895) + PsiWhiteSpace(' ')(4895,4896) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4896,4902) + PsiElement(CMD_PARAMETER)('-Stack')(4896,4902) + PsiWhiteSpace('\t\t\t\t\t')(4902,4907) + PsiComment(COMMENT)('# get all locations from current stack')(4907,4945) + PsiElement(NLS)('\n')(4945,4946) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(4946,4987) + PowerShellCommandNameImplGen(COMMAND_NAME)(4946,4958) + PowerShellIdentifierImplGen(IDENTIFIER)(4946,4958) + PsiElement(GENERIC_ID_PART)('Get-Location')(4946,4958) + PsiWhiteSpace(' ')(4958,4959) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(4959,4969) + PsiElement(CMD_PARAMETER)('-StackName')(4959,4969) + PsiWhiteSpace(' ')(4969,4970) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4970,4978) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4970,4978) + PsiElement(DQ_OPEN)('"')(4970,4971) + PsiElement(EXPANDABLE_STRING_PART)('Stack2')(4971,4977) + PsiElement(DQ_CLOSE)('"')(4977,4978) + PsiElement(,)(',')(4978,4979) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(4979,4987) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(4979,4987) + PsiElement(DQ_OPEN)('"')(4979,4980) + PsiElement(EXPANDABLE_STRING_PART)('Stack1')(4980,4986) + PsiElement(DQ_CLOSE)('"')(4986,4987) + PsiWhiteSpace(' ')(4987,4988) + PsiComment(COMMENT)('# get all locations from named stacks')(4988,5025) + PsiElement(NLS)('\n\n')(5025,5027) + PsiComment(COMMENT)('#Gets the specified members of an object.')(5027,5068) + PsiElement(NLS)('\n')(5068,5069) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(5069,5136) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5069,5071) + PsiElement($)('$')(5069,5070) + PowerShellIdentifierImplGen(IDENTIFIER)(5070,5071) + PsiElement(SIMPLE_ID)('v')(5070,5071) + PsiWhiteSpace(' ')(5071,5072) + PsiElement(=)('=')(5072,5073) + PsiWhiteSpace(' ')(5073,5074) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5074,5136) + PowerShellCommandNameImplGen(COMMAND_NAME)(5074,5082) + PowerShellIdentifierImplGen(IDENTIFIER)(5074,5082) + PsiElement(GENERIC_ID_PART)('New-Item')(5074,5082) + PsiWhiteSpace(' ')(5082,5083) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5083,5089) + PsiElement(CMD_PARAMETER)('-Force')(5083,5089) + PsiWhiteSpace(' ')(5089,5090) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5090,5095) + PsiElement(CMD_PARAMETER)('-Path')(5090,5095) + PsiWhiteSpace(' ')(5095,5096) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5096,5101) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5096,5101) + PsiElement(DQ_OPEN)('"')(5096,5097) + PsiElement(EXPANDABLE_STRING_PART)('I:\')(5097,5100) + PsiElement(DQ_CLOSE)('"')(5100,5101) + PsiWhiteSpace(' ')(5101,5102) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5102,5107) + PsiElement(CMD_PARAMETER)('-Name')(5102,5107) + PsiWhiteSpace(' ')(5107,5108) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5108,5114) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5108,5114) + PsiElement(DQ_OPEN)('"')(5108,5109) + PsiElement(EXPANDABLE_STRING_PART)('Test')(5109,5113) + PsiElement(DQ_CLOSE)('"')(5113,5114) + PsiWhiteSpace(' ')(5114,5115) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5115,5124) + PsiElement(CMD_PARAMETER)('-Itemtype')(5115,5124) + PsiWhiteSpace(' ')(5124,5125) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5125,5136) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5125,5136) + PsiElement(DQ_OPEN)('"')(5125,5126) + PsiElement(EXPANDABLE_STRING_PART)('Directory')(5126,5135) PsiElement(DQ_CLOSE)('"')(5135,5136) - PsiWhiteSpace(' ')(5136,5137) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5137,5146) - PsiElement(CMD_PARAMETER)('-Itemtype')(5137,5146) - PsiWhiteSpace(' ')(5146,5147) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5147,5158) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5147,5158) - PsiElement(DQ_OPEN)('"')(5147,5148) - PsiElement(EXPANDABLE_STRING_PART)('Directory')(5148,5157) - PsiElement(DQ_CLOSE)('"')(5157,5158) - PsiElement(NLS)('\n')(5158,5159) - PowerShellPipelineTailImplGen(PIPELINE)(5159,5174) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5159,5161) - PsiElement($)('$')(5159,5160) - PowerShellIdentifierImplGen(IDENTIFIER)(5160,5161) - PsiElement(SIMPLE_ID)('v')(5160,5161) - PsiWhiteSpace(' ')(5161,5162) - PsiElement(|)('|')(5162,5163) - PsiWhiteSpace(' ')(5163,5164) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5164,5174) - PowerShellCommandNameImplGen(COMMAND_NAME)(5164,5174) - PowerShellIdentifierImplGen(IDENTIFIER)(5164,5174) - PsiElement(GENERIC_ID_PART)('Get-Member')(5164,5174) - PsiElement(NLS)('\n')(5174,5175) - PowerShellPipelineTailImplGen(PIPELINE)(5175,5197) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5175,5177) - PsiElement($)('$')(5175,5176) - PowerShellIdentifierImplGen(IDENTIFIER)(5176,5177) - PsiElement(SIMPLE_ID)('v')(5176,5177) - PsiWhiteSpace(' ')(5177,5178) - PsiElement(|)('|')(5178,5179) - PsiWhiteSpace(' ')(5179,5180) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5180,5197) - PowerShellCommandNameImplGen(COMMAND_NAME)(5180,5190) - PowerShellIdentifierImplGen(IDENTIFIER)(5180,5190) - PsiElement(GENERIC_ID_PART)('Get-Member')(5180,5190) - PsiWhiteSpace(' ')(5190,5191) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5191,5197) - PsiElement(CMD_PARAMETER)('-Force')(5191,5197) - PsiElement(NLS)('\n')(5197,5198) - PowerShellPipelineTailImplGen(PIPELINE)(5198,5247) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5198,5200) - PsiElement($)('$')(5198,5199) - PowerShellIdentifierImplGen(IDENTIFIER)(5199,5200) - PsiElement(SIMPLE_ID)('v')(5199,5200) - PsiWhiteSpace(' ')(5200,5201) - PsiElement(|)('|')(5201,5202) - PsiWhiteSpace(' ')(5202,5203) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5203,5247) - PowerShellCommandNameImplGen(COMMAND_NAME)(5203,5213) - PowerShellIdentifierImplGen(IDENTIFIER)(5203,5213) - PsiElement(GENERIC_ID_PART)('Get-Member')(5203,5213) - PsiWhiteSpace(' ')(5213,5214) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5214,5219) - PsiElement(CMD_PARAMETER)('-Name')(5214,5219) - PsiWhiteSpace(' ')(5219,5220) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5220,5224) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5220,5224) - PsiElement(SIMPLE_ID)('Name')(5220,5224) - PsiElement(,)(',')(5224,5225) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5225,5234) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5225,5234) - PsiElement(SIMPLE_ID)('Extension')(5225,5234) - PsiElement(,)(',')(5234,5235) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5235,5247) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5235,5247) - PsiElement(SIMPLE_ID)('CreationTime')(5235,5247) - PsiElement(NLS)('\n')(5247,5248) - PowerShellPipelineTailImplGen(PIPELINE)(5248,5303) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5248,5250) - PsiElement($)('$')(5248,5249) - PowerShellIdentifierImplGen(IDENTIFIER)(5249,5250) - PsiElement(SIMPLE_ID)('v')(5249,5250) - PsiWhiteSpace(' ')(5250,5251) - PsiElement(|)('|')(5251,5252) - PsiWhiteSpace(' ')(5252,5253) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5253,5303) - PowerShellCommandNameImplGen(COMMAND_NAME)(5253,5263) - PowerShellIdentifierImplGen(IDENTIFIER)(5253,5263) - PsiElement(GENERIC_ID_PART)('Get-Member')(5253,5263) - PsiWhiteSpace(' ')(5263,5264) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5264,5275) - PsiElement(CMD_PARAMETER)('-MemberType')(5264,5275) - PsiWhiteSpace(' ')(5275,5276) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5276,5288) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5276,5288) - PsiElement(SIMPLE_ID)('NoteProperty')(5276,5288) - PsiElement(,)(',')(5288,5289) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5289,5303) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5289,5303) - PsiElement(SIMPLE_ID)('ScriptProperty')(5289,5303) - PsiElement(NLS)('\n')(5303,5304) - PowerShellPipelineTailImplGen(PIPELINE)(5304,5329) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5304,5306) - PsiElement($)('$')(5304,5305) - PowerShellIdentifierImplGen(IDENTIFIER)(5305,5306) - PsiElement(SIMPLE_ID)('v')(5305,5306) - PsiWhiteSpace(' ')(5306,5307) - PsiElement(|)('|')(5307,5308) - PsiWhiteSpace(' ')(5308,5309) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5309,5329) - PowerShellCommandNameImplGen(COMMAND_NAME)(5309,5319) - PowerShellIdentifierImplGen(IDENTIFIER)(5309,5319) - PsiElement(GENERIC_ID_PART)('Get-Member')(5309,5319) - PsiWhiteSpace(' ')(5319,5320) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5320,5325) - PsiElement(CMD_PARAMETER)('-View')(5320,5325) - PsiWhiteSpace(' ')(5325,5326) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5326,5329) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5326,5329) - PsiElement(SIMPLE_ID)('All')(5326,5329) - PsiElement(NLS)('\n\n')(5329,5331) - PsiComment(COMMENT)('#Gets an object for each module (§3.14) that has been imported or that can be imported into the current session.')(5331,5443) - PsiElement(NLS)('\n')(5443,5444) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5444,5474) - PowerShellCommandNameImplGen(COMMAND_NAME)(5444,5454) - PowerShellIdentifierImplGen(IDENTIFIER)(5444,5454) - PsiElement(GENERIC_ID_PART)('Get-Module')(5444,5454) - PsiWhiteSpace(' ')(5454,5455) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5455,5459) - PsiElement(CMD_PARAMETER)('-All')(5455,5459) - PsiWhiteSpace(' ')(5459,5460) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5460,5474) - PsiElement(CMD_PARAMETER)('-ListAvailable')(5460,5474) - PsiElement(NLS)('\n')(5474,5475) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5475,5504) - PowerShellCommandNameImplGen(COMMAND_NAME)(5475,5485) - PowerShellIdentifierImplGen(IDENTIFIER)(5475,5485) - PsiElement(GENERIC_ID_PART)('Get-Module')(5475,5485) - PsiWhiteSpace(' ')(5485,5486) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5486,5504) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5486,5504) - PsiElement(SIMPLE_ID)('PSTest_Temperature')(5486,5504) - PsiElement(NLS)('\n\n')(5504,5506) - PsiComment(COMMENT)('#Gets the PowerShell drives (§3.1) in the current session.')(5506,5564) - PsiElement(NLS)('\n')(5564,5565) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5565,5576) - PowerShellCommandNameImplGen(COMMAND_NAME)(5565,5576) - PowerShellIdentifierImplGen(IDENTIFIER)(5565,5576) - PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5565,5576) - PsiElement(NLS)('\n')(5576,5577) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5577,5590) - PowerShellCommandNameImplGen(COMMAND_NAME)(5577,5588) - PowerShellIdentifierImplGen(IDENTIFIER)(5577,5588) - PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5577,5588) - PsiWhiteSpace(' ')(5588,5589) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5589,5590) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5589,5590) - PsiElement(SIMPLE_ID)('D')(5589,5590) - PsiElement(NLS)('\n')(5590,5591) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5591,5625) - PowerShellCommandNameImplGen(COMMAND_NAME)(5591,5602) - PowerShellIdentifierImplGen(IDENTIFIER)(5591,5602) - PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5591,5602) - PsiWhiteSpace(' ')(5602,5603) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5603,5614) - PsiElement(CMD_PARAMETER)('-PSProvider')(5603,5614) - PsiWhiteSpace(' ')(5614,5615) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5615,5625) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5615,5625) - PsiElement(SIMPLE_ID)('filesystem')(5615,5625) - PsiElement(NLS)('\n\n')(5625,5627) - PsiComment(COMMENT)('#Gets information about one or more providers (§3.1).')(5627,5680) - PsiElement(NLS)('\n')(5680,5681) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5681,5695) - PowerShellCommandNameImplGen(COMMAND_NAME)(5681,5695) - PowerShellIdentifierImplGen(IDENTIFIER)(5681,5695) - PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5681,5695) - PsiWhiteSpace('\t\t\t\t\t\t\t\t')(5695,5703) - PsiComment(COMMENT)('# request information for all providers')(5703,5742) - PsiElement(NLS)('\n')(5742,5743) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5743,5776) - PowerShellCommandNameImplGen(COMMAND_NAME)(5743,5757) - PowerShellIdentifierImplGen(IDENTIFIER)(5743,5757) - PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5743,5757) - PsiWhiteSpace(' ')(5757,5758) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5758,5765) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5758,5765) - PsiElement(DQ_OPEN)('"')(5758,5759) - PsiElement(EXPANDABLE_STRING_PART)('Alias')(5759,5764) - PsiElement(DQ_CLOSE)('"')(5764,5765) - PsiElement(,)(',')(5765,5766) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5766,5776) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5766,5776) - PsiElement(DQ_OPEN)('"')(5766,5767) - PsiElement(EXPANDABLE_STRING_PART)('Variable')(5767,5775) - PsiElement(DQ_CLOSE)('"')(5775,5776) - PsiWhiteSpace('\t')(5776,5777) - PsiComment(COMMENT)('# request information for 2 providers')(5777,5814) - PsiElement(NLS)('\n')(5814,5815) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(5815,5847) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5815,5817) - PsiElement($)('$')(5815,5816) - PowerShellIdentifierImplGen(IDENTIFIER)(5816,5817) - PsiElement(SIMPLE_ID)('v')(5816,5817) - PsiWhiteSpace(' ')(5817,5818) - PsiElement(=)('=')(5818,5819) - PsiWhiteSpace(' ')(5819,5820) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5820,5847) - PowerShellCommandNameImplGen(COMMAND_NAME)(5820,5834) - PowerShellIdentifierImplGen(IDENTIFIER)(5820,5834) - PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5820,5834) - PsiWhiteSpace(' ')(5834,5835) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5835,5847) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5835,5847) - PsiElement(DQ_OPEN)('"')(5835,5836) - PsiElement(EXPANDABLE_STRING_PART)('FileSystem')(5836,5846) - PsiElement(DQ_CLOSE)('"')(5846,5847) - PsiWhiteSpace('\t\t')(5847,5849) - PsiComment(COMMENT)('# request information for 1 provider')(5849,5885) - PsiElement(NLS)('\n')(5885,5886) - PowerShellForeachStatementImplGen(FOREACH_STATEMENT)(5886,5917) - PsiElement(foreach)('foreach')(5886,5893) + PsiElement(NLS)('\n')(5136,5137) + PowerShellPipelineTailImplGen(PIPELINE)(5137,5152) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5137,5139) + PsiElement($)('$')(5137,5138) + PowerShellIdentifierImplGen(IDENTIFIER)(5138,5139) + PsiElement(SIMPLE_ID)('v')(5138,5139) + PsiWhiteSpace(' ')(5139,5140) + PsiElement(|)('|')(5140,5141) + PsiWhiteSpace(' ')(5141,5142) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5142,5152) + PowerShellCommandNameImplGen(COMMAND_NAME)(5142,5152) + PowerShellIdentifierImplGen(IDENTIFIER)(5142,5152) + PsiElement(GENERIC_ID_PART)('Get-Member')(5142,5152) + PsiElement(NLS)('\n')(5152,5153) + PowerShellPipelineTailImplGen(PIPELINE)(5153,5175) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5153,5155) + PsiElement($)('$')(5153,5154) + PowerShellIdentifierImplGen(IDENTIFIER)(5154,5155) + PsiElement(SIMPLE_ID)('v')(5154,5155) + PsiWhiteSpace(' ')(5155,5156) + PsiElement(|)('|')(5156,5157) + PsiWhiteSpace(' ')(5157,5158) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5158,5175) + PowerShellCommandNameImplGen(COMMAND_NAME)(5158,5168) + PowerShellIdentifierImplGen(IDENTIFIER)(5158,5168) + PsiElement(GENERIC_ID_PART)('Get-Member')(5158,5168) + PsiWhiteSpace(' ')(5168,5169) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5169,5175) + PsiElement(CMD_PARAMETER)('-Force')(5169,5175) + PsiElement(NLS)('\n')(5175,5176) + PowerShellPipelineTailImplGen(PIPELINE)(5176,5225) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5176,5178) + PsiElement($)('$')(5176,5177) + PowerShellIdentifierImplGen(IDENTIFIER)(5177,5178) + PsiElement(SIMPLE_ID)('v')(5177,5178) + PsiWhiteSpace(' ')(5178,5179) + PsiElement(|)('|')(5179,5180) + PsiWhiteSpace(' ')(5180,5181) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5181,5225) + PowerShellCommandNameImplGen(COMMAND_NAME)(5181,5191) + PowerShellIdentifierImplGen(IDENTIFIER)(5181,5191) + PsiElement(GENERIC_ID_PART)('Get-Member')(5181,5191) + PsiWhiteSpace(' ')(5191,5192) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5192,5197) + PsiElement(CMD_PARAMETER)('-Name')(5192,5197) + PsiWhiteSpace(' ')(5197,5198) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5198,5202) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5198,5202) + PsiElement(SIMPLE_ID)('Name')(5198,5202) + PsiElement(,)(',')(5202,5203) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5203,5212) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5203,5212) + PsiElement(SIMPLE_ID)('Extension')(5203,5212) + PsiElement(,)(',')(5212,5213) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5213,5225) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5213,5225) + PsiElement(SIMPLE_ID)('CreationTime')(5213,5225) + PsiElement(NLS)('\n')(5225,5226) + PowerShellPipelineTailImplGen(PIPELINE)(5226,5281) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5226,5228) + PsiElement($)('$')(5226,5227) + PowerShellIdentifierImplGen(IDENTIFIER)(5227,5228) + PsiElement(SIMPLE_ID)('v')(5227,5228) + PsiWhiteSpace(' ')(5228,5229) + PsiElement(|)('|')(5229,5230) + PsiWhiteSpace(' ')(5230,5231) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5231,5281) + PowerShellCommandNameImplGen(COMMAND_NAME)(5231,5241) + PowerShellIdentifierImplGen(IDENTIFIER)(5231,5241) + PsiElement(GENERIC_ID_PART)('Get-Member')(5231,5241) + PsiWhiteSpace(' ')(5241,5242) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5242,5253) + PsiElement(CMD_PARAMETER)('-MemberType')(5242,5253) + PsiWhiteSpace(' ')(5253,5254) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5254,5266) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5254,5266) + PsiElement(SIMPLE_ID)('NoteProperty')(5254,5266) + PsiElement(,)(',')(5266,5267) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5267,5281) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5267,5281) + PsiElement(SIMPLE_ID)('ScriptProperty')(5267,5281) + PsiElement(NLS)('\n')(5281,5282) + PowerShellPipelineTailImplGen(PIPELINE)(5282,5307) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5282,5284) + PsiElement($)('$')(5282,5283) + PowerShellIdentifierImplGen(IDENTIFIER)(5283,5284) + PsiElement(SIMPLE_ID)('v')(5283,5284) + PsiWhiteSpace(' ')(5284,5285) + PsiElement(|)('|')(5285,5286) + PsiWhiteSpace(' ')(5286,5287) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5287,5307) + PowerShellCommandNameImplGen(COMMAND_NAME)(5287,5297) + PowerShellIdentifierImplGen(IDENTIFIER)(5287,5297) + PsiElement(GENERIC_ID_PART)('Get-Member')(5287,5297) + PsiWhiteSpace(' ')(5297,5298) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5298,5303) + PsiElement(CMD_PARAMETER)('-View')(5298,5303) + PsiWhiteSpace(' ')(5303,5304) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5304,5307) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5304,5307) + PsiElement(SIMPLE_ID)('All')(5304,5307) + PsiElement(NLS)('\n\n')(5307,5309) + PsiComment(COMMENT)('#Gets an object for each module (§3.14) that has been imported or that can be imported into the current session.')(5309,5421) + PsiElement(NLS)('\n')(5421,5422) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5422,5452) + PowerShellCommandNameImplGen(COMMAND_NAME)(5422,5432) + PowerShellIdentifierImplGen(IDENTIFIER)(5422,5432) + PsiElement(GENERIC_ID_PART)('Get-Module')(5422,5432) + PsiWhiteSpace(' ')(5432,5433) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5433,5437) + PsiElement(CMD_PARAMETER)('-All')(5433,5437) + PsiWhiteSpace(' ')(5437,5438) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5438,5452) + PsiElement(CMD_PARAMETER)('-ListAvailable')(5438,5452) + PsiElement(NLS)('\n')(5452,5453) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5453,5482) + PowerShellCommandNameImplGen(COMMAND_NAME)(5453,5463) + PowerShellIdentifierImplGen(IDENTIFIER)(5453,5463) + PsiElement(GENERIC_ID_PART)('Get-Module')(5453,5463) + PsiWhiteSpace(' ')(5463,5464) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5464,5482) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5464,5482) + PsiElement(SIMPLE_ID)('PSTest_Temperature')(5464,5482) + PsiElement(NLS)('\n\n')(5482,5484) + PsiComment(COMMENT)('#Gets the PowerShell drives (§3.1) in the current session.')(5484,5542) + PsiElement(NLS)('\n')(5542,5543) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5543,5554) + PowerShellCommandNameImplGen(COMMAND_NAME)(5543,5554) + PowerShellIdentifierImplGen(IDENTIFIER)(5543,5554) + PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5543,5554) + PsiElement(NLS)('\n')(5554,5555) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5555,5568) + PowerShellCommandNameImplGen(COMMAND_NAME)(5555,5566) + PowerShellIdentifierImplGen(IDENTIFIER)(5555,5566) + PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5555,5566) + PsiWhiteSpace(' ')(5566,5567) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5567,5568) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5567,5568) + PsiElement(SIMPLE_ID)('D')(5567,5568) + PsiElement(NLS)('\n')(5568,5569) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5569,5603) + PowerShellCommandNameImplGen(COMMAND_NAME)(5569,5580) + PowerShellIdentifierImplGen(IDENTIFIER)(5569,5580) + PsiElement(GENERIC_ID_PART)('Get-PSDrive')(5569,5580) + PsiWhiteSpace(' ')(5580,5581) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(5581,5592) + PsiElement(CMD_PARAMETER)('-PSProvider')(5581,5592) + PsiWhiteSpace(' ')(5592,5593) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5593,5603) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5593,5603) + PsiElement(SIMPLE_ID)('filesystem')(5593,5603) + PsiElement(NLS)('\n\n')(5603,5605) + PsiComment(COMMENT)('#Gets information about one or more providers (§3.1).')(5605,5658) + PsiElement(NLS)('\n')(5658,5659) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5659,5673) + PowerShellCommandNameImplGen(COMMAND_NAME)(5659,5673) + PowerShellIdentifierImplGen(IDENTIFIER)(5659,5673) + PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5659,5673) + PsiWhiteSpace('\t\t\t\t\t\t\t\t')(5673,5681) + PsiComment(COMMENT)('# request information for all providers')(5681,5720) + PsiElement(NLS)('\n')(5720,5721) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5721,5754) + PowerShellCommandNameImplGen(COMMAND_NAME)(5721,5735) + PowerShellIdentifierImplGen(IDENTIFIER)(5721,5735) + PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5721,5735) + PsiWhiteSpace(' ')(5735,5736) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5736,5743) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5736,5743) + PsiElement(DQ_OPEN)('"')(5736,5737) + PsiElement(EXPANDABLE_STRING_PART)('Alias')(5737,5742) + PsiElement(DQ_CLOSE)('"')(5742,5743) + PsiElement(,)(',')(5743,5744) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5744,5754) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5744,5754) + PsiElement(DQ_OPEN)('"')(5744,5745) + PsiElement(EXPANDABLE_STRING_PART)('Variable')(5745,5753) + PsiElement(DQ_CLOSE)('"')(5753,5754) + PsiWhiteSpace('\t')(5754,5755) + PsiComment(COMMENT)('# request information for 2 providers')(5755,5792) + PsiElement(NLS)('\n')(5792,5793) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(5793,5825) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5793,5795) + PsiElement($)('$')(5793,5794) + PowerShellIdentifierImplGen(IDENTIFIER)(5794,5795) + PsiElement(SIMPLE_ID)('v')(5794,5795) + PsiWhiteSpace(' ')(5795,5796) + PsiElement(=)('=')(5796,5797) + PsiWhiteSpace(' ')(5797,5798) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5798,5825) + PowerShellCommandNameImplGen(COMMAND_NAME)(5798,5812) + PowerShellIdentifierImplGen(IDENTIFIER)(5798,5812) + PsiElement(GENERIC_ID_PART)('Get-PSProvider')(5798,5812) + PsiWhiteSpace(' ')(5812,5813) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5813,5825) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5813,5825) + PsiElement(DQ_OPEN)('"')(5813,5814) + PsiElement(EXPANDABLE_STRING_PART)('FileSystem')(5814,5824) + PsiElement(DQ_CLOSE)('"')(5824,5825) + PsiWhiteSpace('\t\t')(5825,5827) + PsiComment(COMMENT)('# request information for 1 provider')(5827,5863) + PsiElement(NLS)('\n')(5863,5864) + PowerShellForeachStatementImplGen(FOREACH_STATEMENT)(5864,5895) + PsiElement(foreach)('foreach')(5864,5871) + PsiWhiteSpace(' ')(5871,5872) + PsiElement(()('(')(5872,5873) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5873,5875) + PsiElement($)('$')(5873,5874) + PowerShellIdentifierImplGen(IDENTIFIER)(5874,5875) + PsiElement(SIMPLE_ID)('e')(5874,5875) + PsiWhiteSpace(' ')(5875,5876) + PsiElement(in)('in')(5876,5878) + PsiWhiteSpace(' ')(5878,5879) + PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(5879,5888) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5879,5881) + PsiElement($)('$')(5879,5880) + PowerShellIdentifierImplGen(IDENTIFIER)(5880,5881) + PsiElement(SIMPLE_ID)('v')(5880,5881) + PsiElement(.)('.')(5881,5882) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5882,5888) + PsiElement(SIMPLE_ID)('Drives')(5882,5888) + PsiElement())(')')(5888,5889) + PsiWhiteSpace(' ')(5889,5890) + PsiElement({)('{')(5890,5891) + PsiWhiteSpace(' ')(5891,5892) + PowerShellBlockBodyImplGen(BLOCK_BODY)(5892,5893) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5892,5893) + PowerShellCommandNameImplGen(COMMAND_NAME)(5892,5893) + PowerShellIdentifierImplGen(IDENTIFIER)(5892,5893) + PsiElement(GENERIC_ID_PART)('…')(5892,5893) PsiWhiteSpace(' ')(5893,5894) - PsiElement(()('(')(5894,5895) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5895,5897) - PsiElement($)('$')(5895,5896) - PowerShellIdentifierImplGen(IDENTIFIER)(5896,5897) - PsiElement(SIMPLE_ID)('e')(5896,5897) - PsiWhiteSpace(' ')(5897,5898) - PsiElement(in)('in')(5898,5900) - PsiWhiteSpace(' ')(5900,5901) - PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(5901,5910) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(5901,5903) - PsiElement($)('$')(5901,5902) - PowerShellIdentifierImplGen(IDENTIFIER)(5902,5903) - PsiElement(SIMPLE_ID)('v')(5902,5903) - PsiElement(.)('.')(5903,5904) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(5904,5910) - PsiElement(SIMPLE_ID)('Drives')(5904,5910) - PsiElement())(')')(5910,5911) - PsiWhiteSpace(' ')(5911,5912) - PsiElement({)('{')(5912,5913) - PsiWhiteSpace(' ')(5913,5914) - PowerShellBlockBodyImplGen(BLOCK_BODY)(5914,5915) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5914,5915) - PowerShellCommandNameImplGen(COMMAND_NAME)(5914,5915) - PowerShellIdentifierImplGen(IDENTIFIER)(5914,5915) - PsiElement(GENERIC_ID_PART)('…')(5914,5915) - PsiWhiteSpace(' ')(5915,5916) - PsiElement(})('}')(5916,5917) - PsiWhiteSpace('\t\t')(5917,5919) - PsiComment(COMMENT)('# process each drive')(5919,5939) - PsiElement(NLS)('\n\n')(5939,5941) - PsiComment(COMMENT)('#Writes information about the specified variables to the pipeline.')(5941,6007) - PsiElement(NLS)('\n')(6007,6008) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6008,6078) - PowerShellCommandNameImplGen(COMMAND_NAME)(6008,6020) - PowerShellIdentifierImplGen(IDENTIFIER)(6008,6020) - PsiElement(GENERIC_ID_PART)('Get-Variable')(6008,6020) - PsiWhiteSpace(' ')(6020,6021) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6021,6031) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6021,6031) - PsiElement(VERBATIM_STRING)(''Count10?'')(6021,6031) - PsiWhiteSpace(' ')(6031,6032) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6032,6040) - PsiElement(CMD_PARAMETER)('-Exclude')(6032,6040) + PsiElement(})('}')(5894,5895) + PsiWhiteSpace('\t\t')(5895,5897) + PsiComment(COMMENT)('# process each drive')(5897,5917) + PsiElement(NLS)('\n\n')(5917,5919) + PsiComment(COMMENT)('#Writes information about the specified variables to the pipeline.')(5919,5985) + PsiElement(NLS)('\n')(5985,5986) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(5986,6056) + PowerShellCommandNameImplGen(COMMAND_NAME)(5986,5998) + PowerShellIdentifierImplGen(IDENTIFIER)(5986,5998) + PsiElement(GENERIC_ID_PART)('Get-Variable')(5986,5998) + PsiWhiteSpace(' ')(5998,5999) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(5999,6009) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(5999,6009) + PsiElement(VERBATIM_STRING)(''Count10?'')(5999,6009) + PsiWhiteSpace(' ')(6009,6010) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6010,6018) + PsiElement(CMD_PARAMETER)('-Exclude')(6010,6018) + PsiWhiteSpace(' ')(6018,6019) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6019,6029) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6019,6029) + PsiElement(VERBATIM_STRING)(''Count101'')(6019,6029) + PsiElement(,)(',')(6029,6030) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6030,6040) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6030,6040) + PsiElement(VERBATIM_STRING)(''Count102'')(6030,6040) PsiWhiteSpace(' ')(6040,6041) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6041,6051) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6041,6051) - PsiElement(VERBATIM_STRING)(''Count101'')(6041,6051) - PsiElement(,)(',')(6051,6052) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6052,6062) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6052,6062) - PsiElement(VERBATIM_STRING)(''Count102'')(6052,6062) - PsiWhiteSpace(' ')(6062,6063) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6063,6069) - PsiElement(CMD_PARAMETER)('-Scope')(6063,6069) - PsiWhiteSpace(' ')(6069,6070) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6070,6078) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6070,6078) - PsiElement(VERBATIM_STRING)(''Script'')(6070,6078) - PsiElement(NLS)('\n\n')(6078,6080) - PsiComment(COMMENT)('#Groups objects that contain the same value for specified properties.')(6080,6149) - PsiElement(NLS)('\n')(6149,6150) - PowerShellPipelineTailImplGen(PIPELINE)(6150,6214) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6150,6169) - PowerShellCommandNameImplGen(COMMAND_NAME)(6150,6163) - PowerShellIdentifierImplGen(IDENTIFIER)(6150,6163) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6150,6163) - PsiWhiteSpace(' ')(6163,6164) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6164,6169) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6164,6169) - PsiElement(*)('*')(6164,6165) - PsiElement(.)('.')(6165,6166) - PsiElement(SIMPLE_ID)('xml')(6166,6169) - PsiWhiteSpace(' ')(6169,6170) - PsiElement(|)('|')(6170,6171) - PsiWhiteSpace(' ')(6171,6172) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6172,6214) - PowerShellCommandNameImplGen(COMMAND_NAME)(6172,6184) - PowerShellIdentifierImplGen(IDENTIFIER)(6172,6184) - PsiElement(GENERIC_ID_PART)('Group-Object')(6172,6184) - PsiWhiteSpace(' ')(6184,6185) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6185,6194) - PsiElement(CMD_PARAMETER)('-Property')(6185,6194) - PsiWhiteSpace(' ')(6194,6195) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6195,6201) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6195,6201) - PsiElement(SIMPLE_ID)('Length')(6195,6201) - PsiWhiteSpace(' ')(6201,6202) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6202,6214) - PsiElement(CMD_PARAMETER)('-AsHashTable')(6202,6214) - PsiElement(NLS)('\n')(6214,6215) - PowerShellPipelineTailImplGen(PIPELINE)(6215,6301) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6215,6232) - PowerShellCommandNameImplGen(COMMAND_NAME)(6215,6228) - PowerShellIdentifierImplGen(IDENTIFIER)(6215,6228) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6215,6228) - PsiWhiteSpace(' ')(6228,6229) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6229,6232) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6229,6232) - PsiElement(*)('*')(6229,6230) - PsiElement(.)('.')(6230,6231) - PsiElement(*)('*')(6231,6232) - PsiWhiteSpace(' ')(6232,6233) - PsiElement(|)('|')(6233,6234) - PsiWhiteSpace(' ')(6234,6235) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6235,6266) - PowerShellCommandNameImplGen(COMMAND_NAME)(6235,6246) - PowerShellIdentifierImplGen(IDENTIFIER)(6235,6246) - PsiElement(GENERIC_ID_PART)('Sort-Object')(6235,6246) - PsiWhiteSpace(' ')(6246,6247) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6247,6256) - PsiElement(CMD_PARAMETER)('-Property')(6247,6256) - PsiWhiteSpace(' ')(6256,6257) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6257,6266) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6257,6266) - PsiElement(SIMPLE_ID)('Extension')(6257,6266) - PsiWhiteSpace(' ')(6266,6267) - PsiElement(|)('|')(6267,6268) - PsiWhiteSpace(' ')(6268,6269) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6269,6301) - PowerShellCommandNameImplGen(COMMAND_NAME)(6269,6281) - PowerShellIdentifierImplGen(IDENTIFIER)(6269,6281) - PsiElement(GENERIC_ID_PART)('Group-Object')(6269,6281) - PsiWhiteSpace(' ')(6281,6282) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6282,6291) - PsiElement(CMD_PARAMETER)('-Property')(6282,6291) - PsiWhiteSpace(' ')(6291,6292) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6292,6301) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6292,6301) - PsiElement(SIMPLE_ID)('Extension')(6292,6301) - PsiElement(NLS)('\n\n')(6301,6303) - PsiComment(COMMENT)('#Adds one or more modules (§3.14) to the current session.')(6303,6360) - PsiElement(NLS)('\n')(6360,6361) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6361,6399) - PowerShellCommandNameImplGen(COMMAND_NAME)(6361,6374) - PowerShellIdentifierImplGen(IDENTIFIER)(6361,6374) - PsiElement(GENERIC_ID_PART)('Import-Module')(6361,6374) - PsiWhiteSpace(' ')(6374,6375) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6375,6380) - PsiElement(CMD_PARAMETER)('-Name')(6375,6380) - PsiWhiteSpace(' ')(6380,6381) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6381,6385) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6381,6385) - PsiElement(SIMPLE_ID)('Lib1')(6381,6385) - PsiElement(,)(',')(6385,6386) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6386,6390) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6386,6390) - PsiElement(SIMPLE_ID)('Lib2')(6386,6390) - PsiWhiteSpace(' ')(6390,6391) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6391,6399) - PsiElement(CMD_PARAMETER)('-Verbose')(6391,6399) - PsiElement(NLS)('\n')(6399,6400) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6400,6445) - PowerShellCommandNameImplGen(COMMAND_NAME)(6400,6413) - PowerShellIdentifierImplGen(IDENTIFIER)(6400,6413) - PsiElement(GENERIC_ID_PART)('Import-Module')(6400,6413) - PsiWhiteSpace(' ')(6413,6414) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6414,6445) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6414,6445) - PsiElement(DQ_OPEN)('"')(6414,6415) - PsiElement(EXPANDABLE_STRING_PART)('E:\Modules\PSTest_Temperature')(6415,6444) - PsiElement(DQ_CLOSE)('"')(6444,6445) - PsiElement(NLS)('\n\n')(6445,6447) - PsiComment(COMMENT)('#Perform the default action on the specified item(s) (§3.3).')(6447,6507) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6041,6047) + PsiElement(CMD_PARAMETER)('-Scope')(6041,6047) + PsiWhiteSpace(' ')(6047,6048) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6048,6056) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6048,6056) + PsiElement(VERBATIM_STRING)(''Script'')(6048,6056) + PsiElement(NLS)('\n\n')(6056,6058) + PsiComment(COMMENT)('#Groups objects that contain the same value for specified properties.')(6058,6127) + PsiElement(NLS)('\n')(6127,6128) + PowerShellPipelineTailImplGen(PIPELINE)(6128,6192) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6128,6147) + PowerShellCommandNameImplGen(COMMAND_NAME)(6128,6141) + PowerShellIdentifierImplGen(IDENTIFIER)(6128,6141) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6128,6141) + PsiWhiteSpace(' ')(6141,6142) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6142,6147) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6142,6147) + PsiElement(*)('*')(6142,6143) + PsiElement(.)('.')(6143,6144) + PsiElement(SIMPLE_ID)('xml')(6144,6147) + PsiWhiteSpace(' ')(6147,6148) + PsiElement(|)('|')(6148,6149) + PsiWhiteSpace(' ')(6149,6150) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6150,6192) + PowerShellCommandNameImplGen(COMMAND_NAME)(6150,6162) + PowerShellIdentifierImplGen(IDENTIFIER)(6150,6162) + PsiElement(GENERIC_ID_PART)('Group-Object')(6150,6162) + PsiWhiteSpace(' ')(6162,6163) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6163,6172) + PsiElement(CMD_PARAMETER)('-Property')(6163,6172) + PsiWhiteSpace(' ')(6172,6173) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6173,6179) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6173,6179) + PsiElement(SIMPLE_ID)('Length')(6173,6179) + PsiWhiteSpace(' ')(6179,6180) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6180,6192) + PsiElement(CMD_PARAMETER)('-AsHashTable')(6180,6192) + PsiElement(NLS)('\n')(6192,6193) + PowerShellPipelineTailImplGen(PIPELINE)(6193,6279) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6193,6210) + PowerShellCommandNameImplGen(COMMAND_NAME)(6193,6206) + PowerShellIdentifierImplGen(IDENTIFIER)(6193,6206) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6193,6206) + PsiWhiteSpace(' ')(6206,6207) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6207,6210) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6207,6210) + PsiElement(*)('*')(6207,6208) + PsiElement(.)('.')(6208,6209) + PsiElement(*)('*')(6209,6210) + PsiWhiteSpace(' ')(6210,6211) + PsiElement(|)('|')(6211,6212) + PsiWhiteSpace(' ')(6212,6213) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6213,6244) + PowerShellCommandNameImplGen(COMMAND_NAME)(6213,6224) + PowerShellIdentifierImplGen(IDENTIFIER)(6213,6224) + PsiElement(GENERIC_ID_PART)('Sort-Object')(6213,6224) + PsiWhiteSpace(' ')(6224,6225) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6225,6234) + PsiElement(CMD_PARAMETER)('-Property')(6225,6234) + PsiWhiteSpace(' ')(6234,6235) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6235,6244) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6235,6244) + PsiElement(SIMPLE_ID)('Extension')(6235,6244) + PsiWhiteSpace(' ')(6244,6245) + PsiElement(|)('|')(6245,6246) + PsiWhiteSpace(' ')(6246,6247) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6247,6279) + PowerShellCommandNameImplGen(COMMAND_NAME)(6247,6259) + PowerShellIdentifierImplGen(IDENTIFIER)(6247,6259) + PsiElement(GENERIC_ID_PART)('Group-Object')(6247,6259) + PsiWhiteSpace(' ')(6259,6260) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6260,6269) + PsiElement(CMD_PARAMETER)('-Property')(6260,6269) + PsiWhiteSpace(' ')(6269,6270) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6270,6279) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6270,6279) + PsiElement(SIMPLE_ID)('Extension')(6270,6279) + PsiElement(NLS)('\n\n')(6279,6281) + PsiComment(COMMENT)('#Adds one or more modules (§3.14) to the current session.')(6281,6338) + PsiElement(NLS)('\n')(6338,6339) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6339,6377) + PowerShellCommandNameImplGen(COMMAND_NAME)(6339,6352) + PowerShellIdentifierImplGen(IDENTIFIER)(6339,6352) + PsiElement(GENERIC_ID_PART)('Import-Module')(6339,6352) + PsiWhiteSpace(' ')(6352,6353) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6353,6358) + PsiElement(CMD_PARAMETER)('-Name')(6353,6358) + PsiWhiteSpace(' ')(6358,6359) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6359,6363) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6359,6363) + PsiElement(SIMPLE_ID)('Lib1')(6359,6363) + PsiElement(,)(',')(6363,6364) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6364,6368) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6364,6368) + PsiElement(SIMPLE_ID)('Lib2')(6364,6368) + PsiWhiteSpace(' ')(6368,6369) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6369,6377) + PsiElement(CMD_PARAMETER)('-Verbose')(6369,6377) + PsiElement(NLS)('\n')(6377,6378) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6378,6423) + PowerShellCommandNameImplGen(COMMAND_NAME)(6378,6391) + PowerShellIdentifierImplGen(IDENTIFIER)(6378,6391) + PsiElement(GENERIC_ID_PART)('Import-Module')(6378,6391) + PsiWhiteSpace(' ')(6391,6392) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6392,6423) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6392,6423) + PsiElement(DQ_OPEN)('"')(6392,6393) + PsiElement(EXPANDABLE_STRING_PART)('E:\Modules\PSTest_Temperature')(6393,6422) + PsiElement(DQ_CLOSE)('"')(6422,6423) + PsiElement(NLS)('\n\n')(6423,6425) + PsiComment(COMMENT)('#Perform the default action on the specified item(s) (§3.3).')(6425,6485) + PsiElement(NLS)('\n')(6485,6486) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6486,6507) + PowerShellCommandNameImplGen(COMMAND_NAME)(6486,6497) + PowerShellIdentifierImplGen(IDENTIFIER)(6486,6497) + PsiElement(GENERIC_ID_PART)('Invoke-Item')(6486,6497) + PsiWhiteSpace(' ')(6497,6498) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6498,6507) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6498,6507) + PsiElement(SIMPLE_ID)('File2')(6498,6503) + PsiElement(.)('.')(6503,6504) + PsiElement(SIMPLE_ID)('txt')(6504,6507) PsiElement(NLS)('\n')(6507,6508) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6508,6529) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6508,6535) PowerShellCommandNameImplGen(COMMAND_NAME)(6508,6519) PowerShellIdentifierImplGen(IDENTIFIER)(6508,6519) PsiElement(GENERIC_ID_PART)('Invoke-Item')(6508,6519) PsiWhiteSpace(' ')(6519,6520) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6520,6529) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6520,6529) - PsiElement(SIMPLE_ID)('File2')(6520,6525) - PsiElement(.)('.')(6525,6526) - PsiElement(SIMPLE_ID)('txt')(6526,6529) - PsiElement(NLS)('\n')(6529,6530) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6530,6557) - PowerShellCommandNameImplGen(COMMAND_NAME)(6530,6541) - PowerShellIdentifierImplGen(IDENTIFIER)(6530,6541) - PsiElement(GENERIC_ID_PART)('Invoke-Item')(6530,6541) - PsiWhiteSpace(' ')(6541,6542) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6542,6557) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6542,6557) - PsiElement(DQ_OPEN)('"')(6542,6543) - PsiElement(EXPANDABLE_STRING_PART)('J:\Manual.pdf')(6543,6556) - PsiElement(DQ_CLOSE)('"')(6556,6557) - PsiElement(NLS)('\n')(6557,6558) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6558,6607) - PowerShellCommandNameImplGen(COMMAND_NAME)(6558,6569) - PowerShellIdentifierImplGen(IDENTIFIER)(6558,6569) - PsiElement(GENERIC_ID_PART)('Invoke-Item')(6558,6569) - PsiWhiteSpace(' ')(6569,6570) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6570,6586) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6570,6586) - PsiElement(DQ_OPEN)('"')(6570,6571) - PsiElement(EXPANDABLE_STRING_PART)('J:\Capture.jpg')(6571,6585) - PsiElement(DQ_CLOSE)('"')(6585,6586) - PsiElement(,)(',')(6586,6587) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6587,6607) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6587,6607) - PsiElement(DQ_OPEN)('"')(6587,6588) - PsiElement(EXPANDABLE_STRING_PART)('J:\Action list.doc')(6588,6606) - PsiElement(DQ_CLOSE)('"')(6606,6607) - PsiElement(NLS)('\n\n')(6607,6609) - PsiComment(COMMENT)('#Combines a path (§3.4) and a child path into a single path.')(6609,6669) - PsiElement(NLS)('\n')(6669,6670) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6670,6717) - PowerShellCommandNameImplGen(COMMAND_NAME)(6670,6679) - PowerShellIdentifierImplGen(IDENTIFIER)(6670,6679) - PsiElement(GENERIC_ID_PART)('Join-Path')(6670,6679) - PsiWhiteSpace(' ')(6679,6680) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6680,6685) - PsiElement(CMD_PARAMETER)('-Path')(6680,6685) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6520,6535) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6520,6535) + PsiElement(DQ_OPEN)('"')(6520,6521) + PsiElement(EXPANDABLE_STRING_PART)('J:\Manual.pdf')(6521,6534) + PsiElement(DQ_CLOSE)('"')(6534,6535) + PsiElement(NLS)('\n')(6535,6536) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6536,6585) + PowerShellCommandNameImplGen(COMMAND_NAME)(6536,6547) + PowerShellIdentifierImplGen(IDENTIFIER)(6536,6547) + PsiElement(GENERIC_ID_PART)('Invoke-Item')(6536,6547) + PsiWhiteSpace(' ')(6547,6548) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6548,6564) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6548,6564) + PsiElement(DQ_OPEN)('"')(6548,6549) + PsiElement(EXPANDABLE_STRING_PART)('J:\Capture.jpg')(6549,6563) + PsiElement(DQ_CLOSE)('"')(6563,6564) + PsiElement(,)(',')(6564,6565) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6565,6585) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(6565,6585) + PsiElement(DQ_OPEN)('"')(6565,6566) + PsiElement(EXPANDABLE_STRING_PART)('J:\Action list.doc')(6566,6584) + PsiElement(DQ_CLOSE)('"')(6584,6585) + PsiElement(NLS)('\n\n')(6585,6587) + PsiComment(COMMENT)('#Combines a path (§3.4) and a child path into a single path.')(6587,6647) + PsiElement(NLS)('\n')(6647,6648) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6648,6695) + PowerShellCommandNameImplGen(COMMAND_NAME)(6648,6657) + PowerShellIdentifierImplGen(IDENTIFIER)(6648,6657) + PsiElement(GENERIC_ID_PART)('Join-Path')(6648,6657) + PsiWhiteSpace(' ')(6657,6658) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6658,6663) + PsiElement(CMD_PARAMETER)('-Path')(6658,6663) + PsiWhiteSpace(' ')(6663,6664) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6664,6666) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6664,6666) + PowerShellPathItemImplGen(PATH_ITEM)(6664,6665) + PsiElement(SIMPLE_ID)('c')(6664,6665) + PsiElement(:)(':')(6665,6666) + PsiElement(,)(',')(6666,6667) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6667,6674) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6667,6674) + PowerShellPathItemImplGen(PATH_ITEM)(6667,6668) + PsiElement(SIMPLE_ID)('e')(6667,6668) + PsiElement(:)(':')(6668,6669) + PsiElement(\)('\')(6669,6670) + PowerShellPathItemImplGen(PATH_ITEM)(6670,6674) + PsiElement(SIMPLE_ID)('Main')(6670,6674) + PsiWhiteSpace(' ')(6674,6675) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6675,6685) + PsiElement(CMD_PARAMETER)('-ChildPath')(6675,6685) PsiWhiteSpace(' ')(6685,6686) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6686,6688) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6686,6688) - PowerShellPathItemImplGen(PATH_ITEM)(6686,6687) - PsiElement(SIMPLE_ID)('c')(6686,6687) - PsiElement(:)(':')(6687,6688) - PsiElement(,)(',')(6688,6689) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6689,6696) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6689,6696) - PowerShellPathItemImplGen(PATH_ITEM)(6689,6690) - PsiElement(SIMPLE_ID)('e')(6689,6690) - PsiElement(:)(':')(6690,6691) - PsiElement(\)('\')(6691,6692) - PowerShellPathItemImplGen(PATH_ITEM)(6692,6696) - PsiElement(SIMPLE_ID)('Main')(6692,6696) - PsiWhiteSpace(' ')(6696,6697) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6697,6707) - PsiElement(CMD_PARAMETER)('-ChildPath')(6697,6707) - PsiWhiteSpace(' ')(6707,6708) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6708,6717) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6708,6717) - PsiElement(SIMPLE_ID)('File1')(6708,6713) - PsiElement(.)('.')(6713,6714) - PsiElement(SIMPLE_ID)('txt')(6714,6717) - PsiElement(NLS)('\n')(6717,6718) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6718,6759) - PowerShellCommandNameImplGen(COMMAND_NAME)(6718,6727) - PowerShellIdentifierImplGen(IDENTIFIER)(6718,6727) - PsiElement(GENERIC_ID_PART)('Join-Path')(6718,6727) - PsiWhiteSpace(' ')(6727,6728) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6728,6733) - PsiElement(CMD_PARAMETER)('-Path')(6728,6733) - PsiWhiteSpace(' ')(6733,6734) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6734,6737) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6734,6737) - PowerShellPathItemImplGen(PATH_ITEM)(6734,6735) - PsiElement(SIMPLE_ID)('G')(6734,6735) - PsiElement(:)(':')(6735,6736) - PsiElement(\)('\')(6736,6737) - PsiWhiteSpace(' ')(6737,6738) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6738,6748) - PsiElement(CMD_PARAMETER)('-ChildPath')(6738,6748) - PsiWhiteSpace(' ')(6748,6749) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6749,6759) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6749,6759) - PsiElement(GENERIC_ID_PART)('Temp??')(6749,6755) - PsiElement(.)('.')(6755,6756) - PsiElement(SIMPLE_ID)('txt')(6756,6759) - PsiElement(NLS)('\n')(6759,6760) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6760,6812) - PowerShellCommandNameImplGen(COMMAND_NAME)(6760,6769) - PowerShellIdentifierImplGen(IDENTIFIER)(6760,6769) - PsiElement(GENERIC_ID_PART)('Join-Path')(6760,6769) - PsiWhiteSpace(' ')(6769,6770) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6770,6775) - PsiElement(CMD_PARAMETER)('-Path')(6770,6775) - PsiWhiteSpace(' ')(6775,6776) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6776,6779) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6776,6779) - PowerShellPathItemImplGen(PATH_ITEM)(6776,6777) - PsiElement(SIMPLE_ID)('G')(6776,6777) - PsiElement(:)(':')(6777,6778) - PsiElement(\)('\')(6778,6779) - PsiWhiteSpace(' ')(6779,6780) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6780,6790) - PsiElement(CMD_PARAMETER)('-ChildPath')(6780,6790) - PsiWhiteSpace(' ')(6790,6791) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6791,6803) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6791,6803) - PowerShellPathItemImplGen(PATH_ITEM)(6791,6795) - PsiElement(SIMPLE_ID)('Temp')(6791,6795) - PsiElement(\)('\')(6795,6796) - PowerShellPathItemImplGen(PATH_ITEM)(6796,6803) - PsiElement(data)('Data')(6796,6800) - PsiElement(*)('*')(6800,6801) - PsiElement(.)('.')(6801,6802) - PsiElement(*)('*')(6802,6803) - PsiWhiteSpace(' ')(6803,6804) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6804,6812) - PsiElement(CMD_PARAMETER)('-Resolve')(6804,6812) - PsiElement(NLS)('\n\n')(6812,6814) - PsiComment(COMMENT)('#Calculates the numeric properties of objects, and the characters, words, and lines in string objects, such as files of text.')(6814,6939) - PsiElement(NLS)('\n')(6939,6940) - PowerShellPipelineTailImplGen(PIPELINE)(6940,7023) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6940,6957) - PowerShellCommandNameImplGen(COMMAND_NAME)(6940,6953) - PowerShellIdentifierImplGen(IDENTIFIER)(6940,6953) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6940,6953) - PsiWhiteSpace(' ')(6953,6954) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6954,6957) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6954,6957) - PsiElement(*)('*')(6954,6955) - PsiElement(.)('.')(6955,6956) - PsiElement(*)('*')(6956,6957) - PsiWhiteSpace(' ')(6957,6958) - PsiElement(|)('|')(6958,6959) - PsiWhiteSpace(' ')(6959,6960) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6960,7023) - PowerShellCommandNameImplGen(COMMAND_NAME)(6960,6974) - PowerShellIdentifierImplGen(IDENTIFIER)(6960,6974) - PsiElement(GENERIC_ID_PART)('Measure-Object')(6960,6974) - PsiWhiteSpace(' ')(6974,6975) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6975,6984) - PsiElement(CMD_PARAMETER)('-Property')(6975,6984) - PsiWhiteSpace(' ')(6984,6985) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6985,6991) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6985,6991) - PsiElement(SIMPLE_ID)('Length')(6985,6991) - PsiWhiteSpace(' ')(6991,6992) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6992,7000) - PsiElement(CMD_PARAMETER)('-Maximum')(6992,7000) - PsiWhiteSpace(' ')(7000,7001) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7001,7009) - PsiElement(CMD_PARAMETER)('-Minimum')(7001,7009) - PsiWhiteSpace(' ')(7009,7010) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7010,7018) - PsiElement(CMD_PARAMETER)('-Average')(7010,7018) - PsiWhiteSpace(' ')(7018,7019) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7019,7023) - PsiElement(CMD_PARAMETER)('-Sum')(7019,7023) - PsiElement(NLS)('\n')(7023,7024) - PowerShellPipelineTailImplGen(PIPELINE)(7024,7086) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7024,7046) - PowerShellCommandNameImplGen(COMMAND_NAME)(7024,7037) - PowerShellIdentifierImplGen(IDENTIFIER)(7024,7037) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(7024,7037) - PsiWhiteSpace(' ')(7037,7038) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7038,7046) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(7038,7046) - PsiElement(SIMPLE_ID)('Test')(7038,7042) - PsiElement(.)('.')(7042,7043) - PsiElement(SIMPLE_ID)('txt')(7043,7046) - PsiWhiteSpace(' ')(7046,7047) - PsiElement(|)('|')(7047,7048) - PsiWhiteSpace(' ')(7048,7049) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7049,7086) - PowerShellCommandNameImplGen(COMMAND_NAME)(7049,7063) - PowerShellIdentifierImplGen(IDENTIFIER)(7049,7063) - PsiElement(GENERIC_ID_PART)('Measure-Object')(7049,7063) - PsiWhiteSpace(' ')(7063,7064) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7064,7074) - PsiElement(CMD_PARAMETER)('-Character')(7064,7074) - PsiWhiteSpace(' ')(7074,7075) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7075,7080) - PsiElement(CMD_PARAMETER)('-Line')(7075,7080) - PsiWhiteSpace(' ')(7080,7081) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7081,7086) - PsiElement(CMD_PARAMETER)('-Word')(7081,7086) - PsiElement(NLS)('\n\n')(7086,7088) - PsiComment(COMMENT)('#Moves one or more items (§3.3) from one location to another.')(7088,7149) - PsiElement(NLS)('\n')(7149,7150) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7150,7210) - PowerShellCommandNameImplGen(COMMAND_NAME)(7150,7154) - PowerShellIdentifierImplGen(IDENTIFIER)(7150,7154) - PsiElement(SIMPLE_ID)('Move')(7150,7154) - PsiWhiteSpace(' ')(7154,7155) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7155,7160) - PsiElement(CMD_PARAMETER)('-Item')(7155,7160) - PsiWhiteSpace(' ')(7160,7161) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7161,7166) - PsiElement(CMD_PARAMETER)('-Path')(7161,7166) - PsiWhiteSpace(' ')(7166,7167) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7167,7178) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7167,7178) - PsiElement(DQ_OPEN)('"')(7167,7168) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\*')(7168,7177) - PsiElement(DQ_CLOSE)('"')(7177,7178) - PsiElement(,)(',')(7178,7179) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7179,7191) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7179,7191) - PsiElement(DQ_OPEN)('"')(7179,7180) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test3\*')(7180,7190) - PsiElement(DQ_CLOSE)('"')(7190,7191) - PsiWhiteSpace(' ')(7191,7192) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7192,7204) - PsiElement(CMD_PARAMETER)('-Destination')(7192,7204) - PsiWhiteSpace(' ')(7204,7205) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7205,7210) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7205,7210) - PsiElement(DQ_OPEN)('"')(7205,7206) - PsiElement(EXPANDABLE_STRING_PART)('J:\')(7206,7209) - PsiElement(DQ_CLOSE)('"')(7209,7210) - PsiElement(NLS)('\n')(7210,7211) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7211,7262) - PowerShellCommandNameImplGen(COMMAND_NAME)(7211,7215) - PowerShellIdentifierImplGen(IDENTIFIER)(7211,7215) - PsiElement(SIMPLE_ID)('Move')(7211,7215) - PsiWhiteSpace(' ')(7215,7216) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7216,7221) - PsiElement(CMD_PARAMETER)('-Item')(7216,7221) - PsiWhiteSpace(' ')(7221,7222) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7222,7227) - PsiElement(CMD_PARAMETER)('-Path')(7222,7227) - PsiWhiteSpace(' ')(7227,7228) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7228,7239) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7228,7239) - PsiElement(DQ_OPEN)('"')(7228,7229) - PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\*')(7229,7238) - PsiElement(DQ_CLOSE)('"')(7238,7239) - PsiWhiteSpace(' ')(7239,7240) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7240,7252) - PsiElement(CMD_PARAMETER)('-Destination')(7240,7252) - PsiWhiteSpace(' ')(7252,7253) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7253,7262) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7253,7262) - PsiElement(DQ_OPEN)('"')(7253,7254) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7254,7261) - PsiElement(DQ_CLOSE)('"')(7261,7262) - PsiElement(NLS)('\n\n')(7262,7264) - PsiComment(COMMENT)('#Creates a new alias.')(7264,7285) - PsiElement(NLS)('\n')(7285,7286) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7286,7308) - PowerShellCommandNameImplGen(COMMAND_NAME)(7286,7295) - PowerShellIdentifierImplGen(IDENTIFIER)(7286,7295) - PsiElement(GENERIC_ID_PART)('New-Alias')(7286,7295) - PsiWhiteSpace(' ')(7295,7296) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7296,7303) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7296,7303) - PsiElement(VERBATIM_STRING)(''Func1'')(7296,7303) - PsiWhiteSpace(' ')(7303,7304) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7304,7308) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7304,7308) - PsiElement(VERBATIM_STRING)(''F1'')(7304,7308) - PsiElement(NLS)('\n')(7308,7309) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7309,7334) - PowerShellCommandNameImplGen(COMMAND_NAME)(7309,7318) - PowerShellIdentifierImplGen(IDENTIFIER)(7309,7318) - PsiElement(GENERIC_ID_PART)('New-Alias')(7309,7318) - PsiWhiteSpace(' ')(7318,7319) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7319,7326) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7319,7326) - PsiElement(VERBATIM_STRING)(''Func2'')(7319,7326) - PsiWhiteSpace(' ')(7326,7327) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7327,7334) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7327,7334) - PsiElement(VERBATIM_STRING)(''Func1'')(7327,7334) - PsiElement(NLS)('\n')(7334,7335) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7335,7390) - PowerShellCommandNameImplGen(COMMAND_NAME)(7335,7344) - PowerShellIdentifierImplGen(IDENTIFIER)(7335,7344) - PsiElement(GENERIC_ID_PART)('New-Alias')(7335,7344) - PsiWhiteSpace(' ')(7344,7345) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7345,7354) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7345,7354) - PsiElement(VERBATIM_STRING)(''Script1'')(7345,7354) - PsiWhiteSpace(' ')(7354,7355) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7355,7390) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7355,7390) - PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\script1.ps1'')(7355,7390) - PsiElement(NLS)('\n')(7390,7391) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7391,7453) - PowerShellCommandNameImplGen(COMMAND_NAME)(7391,7400) - PowerShellIdentifierImplGen(IDENTIFIER)(7391,7400) - PsiElement(GENERIC_ID_PART)('New-Alias')(7391,7400) - PsiWhiteSpace(' ')(7400,7401) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7401,7410) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7401,7410) - PsiElement(VERBATIM_STRING)(''Script1'')(7401,7410) - PsiWhiteSpace(' ')(7410,7411) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7411,7446) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7411,7446) - PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\script2.ps1'')(7411,7446) - PsiWhiteSpace(' ')(7446,7447) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7447,7453) - PsiElement(CMD_PARAMETER)('-Force')(7447,7453) - PsiElement(NLS)('\n')(7453,7454) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7454,7490) - PowerShellCommandNameImplGen(COMMAND_NAME)(7454,7463) - PowerShellIdentifierImplGen(IDENTIFIER)(7454,7463) - PsiElement(GENERIC_ID_PART)('New-Alias')(7454,7463) - PsiWhiteSpace(' ')(7463,7464) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7464,7471) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7464,7471) - PsiElement(VERBATIM_STRING)(''Func3'')(7464,7471) - PsiWhiteSpace(' ')(7471,7472) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7472,7476) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7472,7476) - PsiElement(VERBATIM_STRING)(''F1'')(7472,7476) - PsiWhiteSpace(' ')(7476,7477) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7477,7483) - PsiElement(CMD_PARAMETER)('-Scope')(7477,7483) - PsiWhiteSpace(' ')(7483,7484) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7484,7490) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(7484,7490) - PsiElement(SIMPLE_ID)('Global')(7484,7490) - PsiElement(NLS)('\n')(7490,7491) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(7491,7508) - PsiElement(function)('function')(7491,7499) - PsiWhiteSpace(' ')(7499,7500) - PowerShellIdentifierImplGen(IDENTIFIER)(7500,7502) - PsiElement(SIMPLE_ID)('F1')(7500,7502) - PsiWhiteSpace(' ')(7502,7503) - PsiElement({)('{')(7503,7504) - PsiWhiteSpace(' ')(7504,7505) - PowerShellBlockBodyImplGen(BLOCK_BODY)(7505,7506) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7505,7506) - PowerShellCommandNameImplGen(COMMAND_NAME)(7505,7506) - PowerShellIdentifierImplGen(IDENTIFIER)(7505,7506) - PsiElement(GENERIC_ID_PART)('…')(7505,7506) - PsiWhiteSpace(' ')(7506,7507) - PsiElement(})('}')(7507,7508) - PsiElement(NLS)('\n\n')(7508,7510) - PsiComment(COMMENT)('#Creates a new item with the specified name and type in the specified path.')(7510,7585) - PsiElement(NLS)('\n')(7585,7586) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7586,7641) - PowerShellCommandNameImplGen(COMMAND_NAME)(7586,7594) - PowerShellIdentifierImplGen(IDENTIFIER)(7586,7594) - PsiElement(GENERIC_ID_PART)('New-Item')(7586,7594) - PsiWhiteSpace(' ')(7594,7595) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7595,7600) - PsiElement(CMD_PARAMETER)('-Path')(7595,7600) - PsiWhiteSpace(' ')(7600,7601) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7601,7606) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7601,7606) - PsiElement(DQ_OPEN)('"')(7601,7602) - PsiElement(EXPANDABLE_STRING_PART)('J:\')(7602,7605) - PsiElement(DQ_CLOSE)('"')(7605,7606) - PsiWhiteSpace(' ')(7606,7607) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7607,7612) - PsiElement(CMD_PARAMETER)('-Name')(7607,7612) - PsiWhiteSpace(' ')(7612,7613) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7613,7619) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7613,7619) - PsiElement(DQ_OPEN)('"')(7613,7614) - PsiElement(EXPANDABLE_STRING_PART)('Test')(7614,7618) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6686,6695) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6686,6695) + PsiElement(SIMPLE_ID)('File1')(6686,6691) + PsiElement(.)('.')(6691,6692) + PsiElement(SIMPLE_ID)('txt')(6692,6695) + PsiElement(NLS)('\n')(6695,6696) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6696,6737) + PowerShellCommandNameImplGen(COMMAND_NAME)(6696,6705) + PowerShellIdentifierImplGen(IDENTIFIER)(6696,6705) + PsiElement(GENERIC_ID_PART)('Join-Path')(6696,6705) + PsiWhiteSpace(' ')(6705,6706) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6706,6711) + PsiElement(CMD_PARAMETER)('-Path')(6706,6711) + PsiWhiteSpace(' ')(6711,6712) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6712,6715) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6712,6715) + PowerShellPathItemImplGen(PATH_ITEM)(6712,6713) + PsiElement(SIMPLE_ID)('G')(6712,6713) + PsiElement(:)(':')(6713,6714) + PsiElement(\)('\')(6714,6715) + PsiWhiteSpace(' ')(6715,6716) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6716,6726) + PsiElement(CMD_PARAMETER)('-ChildPath')(6716,6726) + PsiWhiteSpace(' ')(6726,6727) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6727,6737) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6727,6737) + PsiElement(GENERIC_ID_PART)('Temp??')(6727,6733) + PsiElement(.)('.')(6733,6734) + PsiElement(SIMPLE_ID)('txt')(6734,6737) + PsiElement(NLS)('\n')(6737,6738) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6738,6790) + PowerShellCommandNameImplGen(COMMAND_NAME)(6738,6747) + PowerShellIdentifierImplGen(IDENTIFIER)(6738,6747) + PsiElement(GENERIC_ID_PART)('Join-Path')(6738,6747) + PsiWhiteSpace(' ')(6747,6748) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6748,6753) + PsiElement(CMD_PARAMETER)('-Path')(6748,6753) + PsiWhiteSpace(' ')(6753,6754) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6754,6757) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6754,6757) + PowerShellPathItemImplGen(PATH_ITEM)(6754,6755) + PsiElement(SIMPLE_ID)('G')(6754,6755) + PsiElement(:)(':')(6755,6756) + PsiElement(\)('\')(6756,6757) + PsiWhiteSpace(' ')(6757,6758) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6758,6768) + PsiElement(CMD_PARAMETER)('-ChildPath')(6758,6768) + PsiWhiteSpace(' ')(6768,6769) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6769,6781) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(6769,6781) + PowerShellPathItemImplGen(PATH_ITEM)(6769,6773) + PsiElement(SIMPLE_ID)('Temp')(6769,6773) + PsiElement(\)('\')(6773,6774) + PowerShellPathItemImplGen(PATH_ITEM)(6774,6781) + PsiElement(data)('Data')(6774,6778) + PsiElement(*)('*')(6778,6779) + PsiElement(.)('.')(6779,6780) + PsiElement(*)('*')(6780,6781) + PsiWhiteSpace(' ')(6781,6782) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6782,6790) + PsiElement(CMD_PARAMETER)('-Resolve')(6782,6790) + PsiElement(NLS)('\n\n')(6790,6792) + PsiComment(COMMENT)('#Calculates the numeric properties of objects, and the characters, words, and lines in string objects, such as files of text.')(6792,6917) + PsiElement(NLS)('\n')(6917,6918) + PowerShellPipelineTailImplGen(PIPELINE)(6918,7001) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6918,6935) + PowerShellCommandNameImplGen(COMMAND_NAME)(6918,6931) + PowerShellIdentifierImplGen(IDENTIFIER)(6918,6931) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(6918,6931) + PsiWhiteSpace(' ')(6931,6932) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6932,6935) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6932,6935) + PsiElement(*)('*')(6932,6933) + PsiElement(.)('.')(6933,6934) + PsiElement(*)('*')(6934,6935) + PsiWhiteSpace(' ')(6935,6936) + PsiElement(|)('|')(6936,6937) + PsiWhiteSpace(' ')(6937,6938) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(6938,7001) + PowerShellCommandNameImplGen(COMMAND_NAME)(6938,6952) + PowerShellIdentifierImplGen(IDENTIFIER)(6938,6952) + PsiElement(GENERIC_ID_PART)('Measure-Object')(6938,6952) + PsiWhiteSpace(' ')(6952,6953) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6953,6962) + PsiElement(CMD_PARAMETER)('-Property')(6953,6962) + PsiWhiteSpace(' ')(6962,6963) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(6963,6969) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(6963,6969) + PsiElement(SIMPLE_ID)('Length')(6963,6969) + PsiWhiteSpace(' ')(6969,6970) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6970,6978) + PsiElement(CMD_PARAMETER)('-Maximum')(6970,6978) + PsiWhiteSpace(' ')(6978,6979) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6979,6987) + PsiElement(CMD_PARAMETER)('-Minimum')(6979,6987) + PsiWhiteSpace(' ')(6987,6988) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6988,6996) + PsiElement(CMD_PARAMETER)('-Average')(6988,6996) + PsiWhiteSpace(' ')(6996,6997) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(6997,7001) + PsiElement(CMD_PARAMETER)('-Sum')(6997,7001) + PsiElement(NLS)('\n')(7001,7002) + PowerShellPipelineTailImplGen(PIPELINE)(7002,7064) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7002,7024) + PowerShellCommandNameImplGen(COMMAND_NAME)(7002,7015) + PowerShellIdentifierImplGen(IDENTIFIER)(7002,7015) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(7002,7015) + PsiWhiteSpace(' ')(7015,7016) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7016,7024) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(7016,7024) + PsiElement(SIMPLE_ID)('Test')(7016,7020) + PsiElement(.)('.')(7020,7021) + PsiElement(SIMPLE_ID)('txt')(7021,7024) + PsiWhiteSpace(' ')(7024,7025) + PsiElement(|)('|')(7025,7026) + PsiWhiteSpace(' ')(7026,7027) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7027,7064) + PowerShellCommandNameImplGen(COMMAND_NAME)(7027,7041) + PowerShellIdentifierImplGen(IDENTIFIER)(7027,7041) + PsiElement(GENERIC_ID_PART)('Measure-Object')(7027,7041) + PsiWhiteSpace(' ')(7041,7042) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7042,7052) + PsiElement(CMD_PARAMETER)('-Character')(7042,7052) + PsiWhiteSpace(' ')(7052,7053) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7053,7058) + PsiElement(CMD_PARAMETER)('-Line')(7053,7058) + PsiWhiteSpace(' ')(7058,7059) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7059,7064) + PsiElement(CMD_PARAMETER)('-Word')(7059,7064) + PsiElement(NLS)('\n\n')(7064,7066) + PsiComment(COMMENT)('#Moves one or more items (§3.3) from one location to another.')(7066,7127) + PsiElement(NLS)('\n')(7127,7128) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7128,7188) + PowerShellCommandNameImplGen(COMMAND_NAME)(7128,7132) + PowerShellIdentifierImplGen(IDENTIFIER)(7128,7132) + PsiElement(SIMPLE_ID)('Move')(7128,7132) + PsiWhiteSpace(' ')(7132,7133) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7133,7138) + PsiElement(CMD_PARAMETER)('-Item')(7133,7138) + PsiWhiteSpace(' ')(7138,7139) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7139,7144) + PsiElement(CMD_PARAMETER)('-Path')(7139,7144) + PsiWhiteSpace(' ')(7144,7145) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7145,7156) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7145,7156) + PsiElement(DQ_OPEN)('"')(7145,7146) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\*')(7146,7155) + PsiElement(DQ_CLOSE)('"')(7155,7156) + PsiElement(,)(',')(7156,7157) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7157,7169) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7157,7169) + PsiElement(DQ_OPEN)('"')(7157,7158) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test3\*')(7158,7168) + PsiElement(DQ_CLOSE)('"')(7168,7169) + PsiWhiteSpace(' ')(7169,7170) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7170,7182) + PsiElement(CMD_PARAMETER)('-Destination')(7170,7182) + PsiWhiteSpace(' ')(7182,7183) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7183,7188) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7183,7188) + PsiElement(DQ_OPEN)('"')(7183,7184) + PsiElement(EXPANDABLE_STRING_PART)('J:\')(7184,7187) + PsiElement(DQ_CLOSE)('"')(7187,7188) + PsiElement(NLS)('\n')(7188,7189) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7189,7240) + PowerShellCommandNameImplGen(COMMAND_NAME)(7189,7193) + PowerShellIdentifierImplGen(IDENTIFIER)(7189,7193) + PsiElement(SIMPLE_ID)('Move')(7189,7193) + PsiWhiteSpace(' ')(7193,7194) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7194,7199) + PsiElement(CMD_PARAMETER)('-Item')(7194,7199) + PsiWhiteSpace(' ')(7199,7200) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7200,7205) + PsiElement(CMD_PARAMETER)('-Path')(7200,7205) + PsiWhiteSpace(' ')(7205,7206) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7206,7217) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7206,7217) + PsiElement(DQ_OPEN)('"')(7206,7207) + PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\*')(7207,7216) + PsiElement(DQ_CLOSE)('"')(7216,7217) + PsiWhiteSpace(' ')(7217,7218) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7218,7230) + PsiElement(CMD_PARAMETER)('-Destination')(7218,7230) + PsiWhiteSpace(' ')(7230,7231) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7231,7240) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7231,7240) + PsiElement(DQ_OPEN)('"')(7231,7232) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7232,7239) + PsiElement(DQ_CLOSE)('"')(7239,7240) + PsiElement(NLS)('\n\n')(7240,7242) + PsiComment(COMMENT)('#Creates a new alias.')(7242,7263) + PsiElement(NLS)('\n')(7263,7264) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7264,7286) + PowerShellCommandNameImplGen(COMMAND_NAME)(7264,7273) + PowerShellIdentifierImplGen(IDENTIFIER)(7264,7273) + PsiElement(GENERIC_ID_PART)('New-Alias')(7264,7273) + PsiWhiteSpace(' ')(7273,7274) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7274,7281) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7274,7281) + PsiElement(VERBATIM_STRING)(''Func1'')(7274,7281) + PsiWhiteSpace(' ')(7281,7282) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7282,7286) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7282,7286) + PsiElement(VERBATIM_STRING)(''F1'')(7282,7286) + PsiElement(NLS)('\n')(7286,7287) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7287,7312) + PowerShellCommandNameImplGen(COMMAND_NAME)(7287,7296) + PowerShellIdentifierImplGen(IDENTIFIER)(7287,7296) + PsiElement(GENERIC_ID_PART)('New-Alias')(7287,7296) + PsiWhiteSpace(' ')(7296,7297) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7297,7304) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7297,7304) + PsiElement(VERBATIM_STRING)(''Func2'')(7297,7304) + PsiWhiteSpace(' ')(7304,7305) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7305,7312) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7305,7312) + PsiElement(VERBATIM_STRING)(''Func1'')(7305,7312) + PsiElement(NLS)('\n')(7312,7313) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7313,7368) + PowerShellCommandNameImplGen(COMMAND_NAME)(7313,7322) + PowerShellIdentifierImplGen(IDENTIFIER)(7313,7322) + PsiElement(GENERIC_ID_PART)('New-Alias')(7313,7322) + PsiWhiteSpace(' ')(7322,7323) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7323,7332) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7323,7332) + PsiElement(VERBATIM_STRING)(''Script1'')(7323,7332) + PsiWhiteSpace(' ')(7332,7333) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7333,7368) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7333,7368) + PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\script1.ps1'')(7333,7368) + PsiElement(NLS)('\n')(7368,7369) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7369,7431) + PowerShellCommandNameImplGen(COMMAND_NAME)(7369,7378) + PowerShellIdentifierImplGen(IDENTIFIER)(7369,7378) + PsiElement(GENERIC_ID_PART)('New-Alias')(7369,7378) + PsiWhiteSpace(' ')(7378,7379) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7379,7388) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7379,7388) + PsiElement(VERBATIM_STRING)(''Script1'')(7379,7388) + PsiWhiteSpace(' ')(7388,7389) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7389,7424) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7389,7424) + PsiElement(VERBATIM_STRING)(''E:\Powershell\Scripts\script2.ps1'')(7389,7424) + PsiWhiteSpace(' ')(7424,7425) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7425,7431) + PsiElement(CMD_PARAMETER)('-Force')(7425,7431) + PsiElement(NLS)('\n')(7431,7432) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7432,7468) + PowerShellCommandNameImplGen(COMMAND_NAME)(7432,7441) + PowerShellIdentifierImplGen(IDENTIFIER)(7432,7441) + PsiElement(GENERIC_ID_PART)('New-Alias')(7432,7441) + PsiWhiteSpace(' ')(7441,7442) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7442,7449) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7442,7449) + PsiElement(VERBATIM_STRING)(''Func3'')(7442,7449) + PsiWhiteSpace(' ')(7449,7450) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7450,7454) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7450,7454) + PsiElement(VERBATIM_STRING)(''F1'')(7450,7454) + PsiWhiteSpace(' ')(7454,7455) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7455,7461) + PsiElement(CMD_PARAMETER)('-Scope')(7455,7461) + PsiWhiteSpace(' ')(7461,7462) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7462,7468) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(7462,7468) + PsiElement(SIMPLE_ID)('Global')(7462,7468) + PsiElement(NLS)('\n')(7468,7469) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(7469,7486) + PsiElement(function)('function')(7469,7477) + PsiWhiteSpace(' ')(7477,7478) + PowerShellIdentifierImplGen(IDENTIFIER)(7478,7480) + PsiElement(SIMPLE_ID)('F1')(7478,7480) + PsiWhiteSpace(' ')(7480,7481) + PsiElement({)('{')(7481,7482) + PsiWhiteSpace(' ')(7482,7483) + PowerShellBlockBodyImplGen(BLOCK_BODY)(7483,7484) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7483,7484) + PowerShellCommandNameImplGen(COMMAND_NAME)(7483,7484) + PowerShellIdentifierImplGen(IDENTIFIER)(7483,7484) + PsiElement(GENERIC_ID_PART)('…')(7483,7484) + PsiWhiteSpace(' ')(7484,7485) + PsiElement(})('}')(7485,7486) + PsiElement(NLS)('\n\n')(7486,7488) + PsiComment(COMMENT)('#Creates a new item with the specified name and type in the specified path.')(7488,7563) + PsiElement(NLS)('\n')(7563,7564) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7564,7619) + PowerShellCommandNameImplGen(COMMAND_NAME)(7564,7572) + PowerShellIdentifierImplGen(IDENTIFIER)(7564,7572) + PsiElement(GENERIC_ID_PART)('New-Item')(7564,7572) + PsiWhiteSpace(' ')(7572,7573) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7573,7578) + PsiElement(CMD_PARAMETER)('-Path')(7573,7578) + PsiWhiteSpace(' ')(7578,7579) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7579,7584) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7579,7584) + PsiElement(DQ_OPEN)('"')(7579,7580) + PsiElement(EXPANDABLE_STRING_PART)('J:\')(7580,7583) + PsiElement(DQ_CLOSE)('"')(7583,7584) + PsiWhiteSpace(' ')(7584,7585) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7585,7590) + PsiElement(CMD_PARAMETER)('-Name')(7585,7590) + PsiWhiteSpace(' ')(7590,7591) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7591,7597) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7591,7597) + PsiElement(DQ_OPEN)('"')(7591,7592) + PsiElement(EXPANDABLE_STRING_PART)('Test')(7592,7596) + PsiElement(DQ_CLOSE)('"')(7596,7597) + PsiWhiteSpace(' ')(7597,7598) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7598,7607) + PsiElement(CMD_PARAMETER)('-Itemtype')(7598,7607) + PsiWhiteSpace(' ')(7607,7608) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7608,7619) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7608,7619) + PsiElement(DQ_OPEN)('"')(7608,7609) + PsiElement(EXPANDABLE_STRING_PART)('Directory')(7609,7618) PsiElement(DQ_CLOSE)('"')(7618,7619) - PsiWhiteSpace(' ')(7619,7620) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7620,7629) - PsiElement(CMD_PARAMETER)('-Itemtype')(7620,7629) - PsiWhiteSpace(' ')(7629,7630) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7630,7641) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7630,7641) - PsiElement(DQ_OPEN)('"')(7630,7631) - PsiElement(EXPANDABLE_STRING_PART)('Directory')(7631,7640) - PsiElement(DQ_CLOSE)('"')(7640,7641) - PsiElement(NLS)('\n')(7641,7642) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7642,7689) - PowerShellCommandNameImplGen(COMMAND_NAME)(7642,7650) - PowerShellIdentifierImplGen(IDENTIFIER)(7642,7650) - PsiElement(GENERIC_ID_PART)('New-Item')(7642,7650) - PsiWhiteSpace(' ')(7650,7651) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7651,7656) - PsiElement(CMD_PARAMETER)('-Path')(7651,7656) - PsiWhiteSpace(' ')(7656,7657) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7657,7667) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7657,7667) - PsiElement(DQ_OPEN)('"')(7657,7658) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test2')(7658,7666) + PsiElement(NLS)('\n')(7619,7620) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7620,7667) + PowerShellCommandNameImplGen(COMMAND_NAME)(7620,7628) + PowerShellIdentifierImplGen(IDENTIFIER)(7620,7628) + PsiElement(GENERIC_ID_PART)('New-Item')(7620,7628) + PsiWhiteSpace(' ')(7628,7629) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7629,7634) + PsiElement(CMD_PARAMETER)('-Path')(7629,7634) + PsiWhiteSpace(' ')(7634,7635) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7635,7645) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7635,7645) + PsiElement(DQ_OPEN)('"')(7635,7636) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test2')(7636,7644) + PsiElement(DQ_CLOSE)('"')(7644,7645) + PsiWhiteSpace(' ')(7645,7646) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7646,7655) + PsiElement(CMD_PARAMETER)('-Itemtype')(7646,7655) + PsiWhiteSpace(' ')(7655,7656) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7656,7667) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7656,7667) + PsiElement(DQ_OPEN)('"')(7656,7657) + PsiElement(EXPANDABLE_STRING_PART)('Directory')(7657,7666) PsiElement(DQ_CLOSE)('"')(7666,7667) - PsiWhiteSpace(' ')(7667,7668) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7668,7677) - PsiElement(CMD_PARAMETER)('-Itemtype')(7668,7677) - PsiWhiteSpace(' ')(7677,7678) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7678,7689) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7678,7689) - PsiElement(DQ_OPEN)('"')(7678,7679) - PsiElement(EXPANDABLE_STRING_PART)('Directory')(7679,7688) - PsiElement(DQ_CLOSE)('"')(7688,7689) - PsiElement(NLS)('\n')(7689,7690) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7690,7749) - PowerShellCommandNameImplGen(COMMAND_NAME)(7690,7698) - PowerShellIdentifierImplGen(IDENTIFIER)(7690,7698) - PsiElement(GENERIC_ID_PART)('New-Item')(7690,7698) + PsiElement(NLS)('\n')(7667,7668) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7668,7727) + PowerShellCommandNameImplGen(COMMAND_NAME)(7668,7676) + PowerShellIdentifierImplGen(IDENTIFIER)(7668,7676) + PsiElement(GENERIC_ID_PART)('New-Item')(7668,7676) + PsiWhiteSpace(' ')(7676,7677) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7677,7682) + PsiElement(CMD_PARAMETER)('-Path')(7677,7682) + PsiWhiteSpace(' ')(7682,7683) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7683,7692) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7683,7692) + PsiElement(DQ_OPEN)('"')(7683,7684) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7684,7691) + PsiElement(DQ_CLOSE)('"')(7691,7692) + PsiWhiteSpace(' ')(7692,7693) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7693,7698) + PsiElement(CMD_PARAMETER)('-Name')(7693,7698) PsiWhiteSpace(' ')(7698,7699) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7699,7704) - PsiElement(CMD_PARAMETER)('-Path')(7699,7704) - PsiWhiteSpace(' ')(7704,7705) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7705,7714) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7705,7714) - PsiElement(DQ_OPEN)('"')(7705,7706) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7706,7713) - PsiElement(DQ_CLOSE)('"')(7713,7714) - PsiWhiteSpace(' ')(7714,7715) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7715,7720) - PsiElement(CMD_PARAMETER)('-Name')(7715,7720) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7699,7710) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7699,7710) + PsiElement(DQ_OPEN)('"')(7699,7700) + PsiElement(EXPANDABLE_STRING_PART)('File1.txt')(7700,7709) + PsiElement(DQ_CLOSE)('"')(7709,7710) + PsiWhiteSpace(' ')(7710,7711) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7711,7720) + PsiElement(CMD_PARAMETER)('-Itemtype')(7711,7720) PsiWhiteSpace(' ')(7720,7721) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7721,7732) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7721,7732) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7721,7727) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7721,7727) PsiElement(DQ_OPEN)('"')(7721,7722) - PsiElement(EXPANDABLE_STRING_PART)('File1.txt')(7722,7731) - PsiElement(DQ_CLOSE)('"')(7731,7732) - PsiWhiteSpace(' ')(7732,7733) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7733,7742) - PsiElement(CMD_PARAMETER)('-Itemtype')(7733,7742) + PsiElement(EXPANDABLE_STRING_PART)('File')(7722,7726) + PsiElement(DQ_CLOSE)('"')(7726,7727) + PsiElement(NLS)('\n')(7727,7728) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7728,7804) + PowerShellCommandNameImplGen(COMMAND_NAME)(7728,7736) + PowerShellIdentifierImplGen(IDENTIFIER)(7728,7736) + PsiElement(GENERIC_ID_PART)('New-Item')(7728,7736) + PsiWhiteSpace(' ')(7736,7737) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7737,7742) + PsiElement(CMD_PARAMETER)('-Path')(7737,7742) PsiWhiteSpace(' ')(7742,7743) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7743,7749) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7743,7749) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7743,7752) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7743,7752) PsiElement(DQ_OPEN)('"')(7743,7744) - PsiElement(EXPANDABLE_STRING_PART)('File')(7744,7748) - PsiElement(DQ_CLOSE)('"')(7748,7749) - PsiElement(NLS)('\n')(7749,7750) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7750,7826) - PowerShellCommandNameImplGen(COMMAND_NAME)(7750,7758) - PowerShellIdentifierImplGen(IDENTIFIER)(7750,7758) - PsiElement(GENERIC_ID_PART)('New-Item')(7750,7758) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7744,7751) + PsiElement(DQ_CLOSE)('"')(7751,7752) + PsiWhiteSpace(' ')(7752,7753) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7753,7758) + PsiElement(CMD_PARAMETER)('-Name')(7753,7758) PsiWhiteSpace(' ')(7758,7759) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7759,7764) - PsiElement(CMD_PARAMETER)('-Path')(7759,7764) - PsiWhiteSpace(' ')(7764,7765) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7765,7774) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7765,7774) - PsiElement(DQ_OPEN)('"')(7765,7766) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7766,7773) - PsiElement(DQ_CLOSE)('"')(7773,7774) - PsiWhiteSpace(' ')(7774,7775) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7775,7780) - PsiElement(CMD_PARAMETER)('-Name')(7775,7780) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7759,7770) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7759,7770) + PsiElement(DQ_OPEN)('"')(7759,7760) + PsiElement(EXPANDABLE_STRING_PART)('File2.txt')(7760,7769) + PsiElement(DQ_CLOSE)('"')(7769,7770) + PsiWhiteSpace(' ')(7770,7771) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7771,7780) + PsiElement(CMD_PARAMETER)('-Itemtype')(7771,7780) PsiWhiteSpace(' ')(7780,7781) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7781,7792) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7781,7792) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7781,7787) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7781,7787) PsiElement(DQ_OPEN)('"')(7781,7782) - PsiElement(EXPANDABLE_STRING_PART)('File2.txt')(7782,7791) - PsiElement(DQ_CLOSE)('"')(7791,7792) - PsiWhiteSpace(' ')(7792,7793) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7793,7802) - PsiElement(CMD_PARAMETER)('-Itemtype')(7793,7802) - PsiWhiteSpace(' ')(7802,7803) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7803,7809) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7803,7809) - PsiElement(DQ_OPEN)('"')(7803,7804) - PsiElement(EXPANDABLE_STRING_PART)('File')(7804,7808) - PsiElement(DQ_CLOSE)('"')(7808,7809) - PsiWhiteSpace(' ')(7809,7810) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7810,7816) - PsiElement(CMD_PARAMETER)('-Value')(7810,7816) - PsiWhiteSpace(' ')(7816,7817) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7817,7826) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7817,7826) - PsiElement(DQ_OPEN)('"')(7817,7818) - PsiElement(EXPANDABLE_STRING_PART)('Hello`n')(7818,7825) - PsiElement(DQ_CLOSE)('"')(7825,7826) - PsiElement(NLS)('\n')(7826,7827) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7827,7897) - PowerShellCommandNameImplGen(COMMAND_NAME)(7827,7835) - PowerShellIdentifierImplGen(IDENTIFIER)(7827,7835) - PsiElement(GENERIC_ID_PART)('New-Item')(7827,7835) - PsiWhiteSpace(' ')(7835,7836) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7836,7841) - PsiElement(CMD_PARAMETER)('-Path')(7836,7841) - PsiWhiteSpace(' ')(7841,7842) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7842,7851) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7842,7851) - PsiElement(DQ_OPEN)('"')(7842,7843) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7843,7850) - PsiElement(DQ_CLOSE)('"')(7850,7851) - PsiElement(,)(',')(7851,7852) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7852,7862) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7852,7862) - PsiElement(DQ_OPEN)('"')(7852,7853) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test3')(7853,7861) - PsiElement(DQ_CLOSE)('"')(7861,7862) - PsiWhiteSpace(' ')(7862,7863) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7863,7868) - PsiElement(CMD_PARAMETER)('-Name')(7863,7868) + PsiElement(EXPANDABLE_STRING_PART)('File')(7782,7786) + PsiElement(DQ_CLOSE)('"')(7786,7787) + PsiWhiteSpace(' ')(7787,7788) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7788,7794) + PsiElement(CMD_PARAMETER)('-Value')(7788,7794) + PsiWhiteSpace(' ')(7794,7795) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7795,7804) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7795,7804) + PsiElement(DQ_OPEN)('"')(7795,7796) + PsiElement(EXPANDABLE_STRING_PART)('Hello`n')(7796,7803) + PsiElement(DQ_CLOSE)('"')(7803,7804) + PsiElement(NLS)('\n')(7804,7805) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7805,7875) + PowerShellCommandNameImplGen(COMMAND_NAME)(7805,7813) + PowerShellIdentifierImplGen(IDENTIFIER)(7805,7813) + PsiElement(GENERIC_ID_PART)('New-Item')(7805,7813) + PsiWhiteSpace(' ')(7813,7814) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7814,7819) + PsiElement(CMD_PARAMETER)('-Path')(7814,7819) + PsiWhiteSpace(' ')(7819,7820) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7820,7829) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7820,7829) + PsiElement(DQ_OPEN)('"')(7820,7821) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test')(7821,7828) + PsiElement(DQ_CLOSE)('"')(7828,7829) + PsiElement(,)(',')(7829,7830) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7830,7840) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7830,7840) + PsiElement(DQ_OPEN)('"')(7830,7831) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test3')(7831,7839) + PsiElement(DQ_CLOSE)('"')(7839,7840) + PsiWhiteSpace(' ')(7840,7841) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7841,7846) + PsiElement(CMD_PARAMETER)('-Name')(7841,7846) + PsiWhiteSpace(' ')(7846,7847) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7847,7858) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7847,7858) + PsiElement(DQ_OPEN)('"')(7847,7848) + PsiElement(EXPANDABLE_STRING_PART)('File3.txt')(7848,7857) + PsiElement(DQ_CLOSE)('"')(7857,7858) + PsiWhiteSpace(' ')(7858,7859) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7859,7868) + PsiElement(CMD_PARAMETER)('-Itemtype')(7859,7868) PsiWhiteSpace(' ')(7868,7869) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7869,7880) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7869,7880) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7869,7875) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7869,7875) PsiElement(DQ_OPEN)('"')(7869,7870) - PsiElement(EXPANDABLE_STRING_PART)('File3.txt')(7870,7879) - PsiElement(DQ_CLOSE)('"')(7879,7880) - PsiWhiteSpace(' ')(7880,7881) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7881,7890) - PsiElement(CMD_PARAMETER)('-Itemtype')(7881,7890) + PsiElement(EXPANDABLE_STRING_PART)('File')(7870,7874) + PsiElement(DQ_CLOSE)('"')(7874,7875) + PsiElement(NLS)('\n')(7875,7876) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7876,7927) + PowerShellCommandNameImplGen(COMMAND_NAME)(7876,7884) + PowerShellIdentifierImplGen(IDENTIFIER)(7876,7884) + PsiElement(GENERIC_ID_PART)('New-Item')(7876,7884) + PsiWhiteSpace(' ')(7884,7885) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7885,7890) + PsiElement(CMD_PARAMETER)('-Path')(7885,7890) PsiWhiteSpace(' ')(7890,7891) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7891,7897) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7891,7897) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7891,7899) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7891,7899) PsiElement(DQ_OPEN)('"')(7891,7892) - PsiElement(EXPANDABLE_STRING_PART)('File')(7892,7896) - PsiElement(DQ_CLOSE)('"')(7896,7897) - PsiElement(NLS)('\n')(7897,7898) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7898,7949) - PowerShellCommandNameImplGen(COMMAND_NAME)(7898,7906) - PowerShellIdentifierImplGen(IDENTIFIER)(7898,7906) - PsiElement(GENERIC_ID_PART)('New-Item')(7898,7906) - PsiWhiteSpace(' ')(7906,7907) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7907,7912) - PsiElement(CMD_PARAMETER)('-Path')(7907,7912) - PsiWhiteSpace(' ')(7912,7913) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7913,7921) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7913,7921) - PsiElement(DQ_OPEN)('"')(7913,7914) - PsiElement(EXPANDABLE_STRING_PART)('Alias:')(7914,7920) - PsiElement(DQ_CLOSE)('"')(7920,7921) - PsiWhiteSpace(' ')(7921,7922) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7922,7927) - PsiElement(CMD_PARAMETER)('-Name')(7922,7927) - PsiWhiteSpace(' ')(7927,7928) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7928,7937) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7928,7937) - PsiElement(DQ_OPEN)('"')(7928,7929) - PsiElement(EXPANDABLE_STRING_PART)('MyName1')(7929,7936) - PsiElement(DQ_CLOSE)('"')(7936,7937) - PsiWhiteSpace(' ')(7937,7938) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7938,7944) - PsiElement(CMD_PARAMETER)('-Value')(7938,7944) - PsiWhiteSpace(' ')(7944,7945) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7945,7949) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7945,7949) - PsiElement(DQ_OPEN)('"')(7945,7946) - PsiElement(EXPANDABLE_STRING_PART)('F1')(7946,7948) + PsiElement(EXPANDABLE_STRING_PART)('Alias:')(7892,7898) + PsiElement(DQ_CLOSE)('"')(7898,7899) + PsiWhiteSpace(' ')(7899,7900) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7900,7905) + PsiElement(CMD_PARAMETER)('-Name')(7900,7905) + PsiWhiteSpace(' ')(7905,7906) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7906,7915) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7906,7915) + PsiElement(DQ_OPEN)('"')(7906,7907) + PsiElement(EXPANDABLE_STRING_PART)('MyName1')(7907,7914) + PsiElement(DQ_CLOSE)('"')(7914,7915) + PsiWhiteSpace(' ')(7915,7916) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7916,7922) + PsiElement(CMD_PARAMETER)('-Value')(7916,7922) + PsiWhiteSpace(' ')(7922,7923) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7923,7927) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7923,7927) + PsiElement(DQ_OPEN)('"')(7923,7924) + PsiElement(EXPANDABLE_STRING_PART)('F1')(7924,7926) + PsiElement(DQ_CLOSE)('"')(7926,7927) + PsiElement(NLS)('\n')(7927,7928) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7928,7981) + PowerShellCommandNameImplGen(COMMAND_NAME)(7928,7936) + PowerShellIdentifierImplGen(IDENTIFIER)(7928,7936) + PsiElement(GENERIC_ID_PART)('New-Item')(7928,7936) + PsiWhiteSpace(' ')(7936,7937) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7937,7942) + PsiElement(CMD_PARAMETER)('-Path')(7937,7942) + PsiWhiteSpace(' ')(7942,7943) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7943,7949) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7943,7949) + PsiElement(DQ_OPEN)('"')(7943,7944) + PsiElement(EXPANDABLE_STRING_PART)('Env:')(7944,7948) PsiElement(DQ_CLOSE)('"')(7948,7949) - PsiElement(NLS)('\n')(7949,7950) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7950,8003) - PowerShellCommandNameImplGen(COMMAND_NAME)(7950,7958) - PowerShellIdentifierImplGen(IDENTIFIER)(7950,7958) - PsiElement(GENERIC_ID_PART)('New-Item')(7950,7958) - PsiWhiteSpace(' ')(7958,7959) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7959,7964) - PsiElement(CMD_PARAMETER)('-Path')(7959,7964) + PsiWhiteSpace(' ')(7949,7950) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7950,7955) + PsiElement(CMD_PARAMETER)('-Name')(7950,7955) + PsiWhiteSpace(' ')(7955,7956) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7956,7964) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7956,7964) + PsiElement(DQ_OPEN)('"')(7956,7957) + PsiElement(EXPANDABLE_STRING_PART)('MyEnv1')(7957,7963) + PsiElement(DQ_CLOSE)('"')(7963,7964) PsiWhiteSpace(' ')(7964,7965) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7965,7971) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7965,7971) - PsiElement(DQ_OPEN)('"')(7965,7966) - PsiElement(EXPANDABLE_STRING_PART)('Env:')(7966,7970) - PsiElement(DQ_CLOSE)('"')(7970,7971) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7965,7971) + PsiElement(CMD_PARAMETER)('-Value')(7965,7971) PsiWhiteSpace(' ')(7971,7972) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7972,7977) - PsiElement(CMD_PARAMETER)('-Name')(7972,7977) - PsiWhiteSpace(' ')(7977,7978) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7978,7986) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7978,7986) - PsiElement(DQ_OPEN)('"')(7978,7979) - PsiElement(EXPANDABLE_STRING_PART)('MyEnv1')(7979,7985) - PsiElement(DQ_CLOSE)('"')(7985,7986) - PsiWhiteSpace(' ')(7986,7987) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7987,7993) - PsiElement(CMD_PARAMETER)('-Value')(7987,7993) - PsiWhiteSpace(' ')(7993,7994) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7994,8003) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7994,8003) - PsiElement(DQ_OPEN)('"')(7994,7995) - PsiElement(EXPANDABLE_STRING_PART)('Max=200')(7995,8002) - PsiElement(DQ_CLOSE)('"')(8002,8003) - PsiElement(NLS)('\n')(8003,8004) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8004,8080) - PowerShellCommandNameImplGen(COMMAND_NAME)(8004,8012) - PowerShellIdentifierImplGen(IDENTIFIER)(8004,8012) - PsiElement(GENERIC_ID_PART)('New-Item')(8004,8012) - PsiWhiteSpace(' ')(8012,8013) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8013,8018) - PsiElement(CMD_PARAMETER)('-Path')(8013,8018) - PsiWhiteSpace(' ')(8018,8019) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8019,8030) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8019,8030) - PsiElement(DQ_OPEN)('"')(8019,8020) - PsiElement(EXPANDABLE_STRING_PART)('Function:')(8020,8029) - PsiElement(DQ_CLOSE)('"')(8029,8030) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7972,7981) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7972,7981) + PsiElement(DQ_OPEN)('"')(7972,7973) + PsiElement(EXPANDABLE_STRING_PART)('Max=200')(7973,7980) + PsiElement(DQ_CLOSE)('"')(7980,7981) + PsiElement(NLS)('\n')(7981,7982) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(7982,8058) + PowerShellCommandNameImplGen(COMMAND_NAME)(7982,7990) + PowerShellIdentifierImplGen(IDENTIFIER)(7982,7990) + PsiElement(GENERIC_ID_PART)('New-Item')(7982,7990) + PsiWhiteSpace(' ')(7990,7991) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(7991,7996) + PsiElement(CMD_PARAMETER)('-Path')(7991,7996) + PsiWhiteSpace(' ')(7996,7997) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(7997,8008) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(7997,8008) + PsiElement(DQ_OPEN)('"')(7997,7998) + PsiElement(EXPANDABLE_STRING_PART)('Function:')(7998,8007) + PsiElement(DQ_CLOSE)('"')(8007,8008) + PsiWhiteSpace(' ')(8008,8009) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8009,8014) + PsiElement(CMD_PARAMETER)('-Name')(8009,8014) + PsiWhiteSpace(' ')(8014,8015) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8015,8023) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8015,8023) + PsiElement(DQ_OPEN)('"')(8015,8016) + PsiElement(EXPANDABLE_STRING_PART)('MyFun2')(8016,8022) + PsiElement(DQ_CLOSE)('"')(8022,8023) + PsiWhiteSpace(' ')(8023,8024) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8024,8030) + PsiElement(CMD_PARAMETER)('-Value')(8024,8030) PsiWhiteSpace(' ')(8030,8031) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8031,8036) - PsiElement(CMD_PARAMETER)('-Name')(8031,8036) - PsiWhiteSpace(' ')(8036,8037) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8037,8045) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8037,8045) - PsiElement(DQ_OPEN)('"')(8037,8038) - PsiElement(EXPANDABLE_STRING_PART)('MyFun2')(8038,8044) - PsiElement(DQ_CLOSE)('"')(8044,8045) - PsiWhiteSpace(' ')(8045,8046) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8046,8052) - PsiElement(CMD_PARAMETER)('-Value')(8046,8052) - PsiWhiteSpace(' ')(8052,8053) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8053,8080) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8053,8080) - PsiElement({)('{')(8053,8054) - PsiWhiteSpace(' ')(8054,8055) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8055,8078) - PowerShellBlockParameterClauseImplGen(BLOCK_PARAMETER_CLAUSE)(8055,8070) - PsiElement(param)('param')(8055,8060) - PsiWhiteSpace(' ')(8060,8061) - PsiElement(()('(')(8061,8062) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8062,8065) - PsiElement($)('$')(8062,8063) - PowerShellIdentifierImplGen(IDENTIFIER)(8063,8065) - PsiElement(SIMPLE_ID)('p1')(8063,8065) - PsiElement(,)(',')(8065,8066) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8066,8069) - PsiElement($)('$')(8066,8067) - PowerShellIdentifierImplGen(IDENTIFIER)(8067,8069) - PsiElement(SIMPLE_ID)('p2')(8067,8069) - PsiElement())(')')(8069,8070) - PsiWhiteSpace(' ')(8070,8071) - PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(8071,8078) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8071,8074) - PsiElement($)('$')(8071,8072) - PowerShellIdentifierImplGen(IDENTIFIER)(8072,8074) - PsiElement(SIMPLE_ID)('p1')(8072,8074) - PsiElement(*)('*')(8074,8075) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8075,8078) - PsiElement($)('$')(8075,8076) - PowerShellIdentifierImplGen(IDENTIFIER)(8076,8078) - PsiElement(SIMPLE_ID)('p2')(8076,8078) - PsiWhiteSpace(' ')(8078,8079) - PsiElement(})('}')(8079,8080) - PsiElement(NLS)('\n')(8080,8081) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8081,8133) - PowerShellCommandNameImplGen(COMMAND_NAME)(8081,8089) - PowerShellIdentifierImplGen(IDENTIFIER)(8081,8089) - PsiElement(GENERIC_ID_PART)('New-Item')(8081,8089) - PsiWhiteSpace(' ')(8089,8090) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8090,8095) - PsiElement(CMD_PARAMETER)('-Path')(8090,8095) - PsiWhiteSpace(' ')(8095,8096) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8096,8107) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8096,8107) - PsiElement(DQ_OPEN)('"')(8096,8097) - PsiElement(EXPANDABLE_STRING_PART)('Variable:')(8097,8106) - PsiElement(DQ_CLOSE)('"')(8106,8107) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8031,8058) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8031,8058) + PsiElement({)('{')(8031,8032) + PsiWhiteSpace(' ')(8032,8033) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8033,8056) + PowerShellBlockParameterClauseImplGen(BLOCK_PARAMETER_CLAUSE)(8033,8048) + PsiElement(param)('param')(8033,8038) + PsiWhiteSpace(' ')(8038,8039) + PsiElement(()('(')(8039,8040) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8040,8043) + PsiElement($)('$')(8040,8041) + PowerShellIdentifierImplGen(IDENTIFIER)(8041,8043) + PsiElement(SIMPLE_ID)('p1')(8041,8043) + PsiElement(,)(',')(8043,8044) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8044,8047) + PsiElement($)('$')(8044,8045) + PowerShellIdentifierImplGen(IDENTIFIER)(8045,8047) + PsiElement(SIMPLE_ID)('p2')(8045,8047) + PsiElement())(')')(8047,8048) + PsiWhiteSpace(' ')(8048,8049) + PowerShellMultiplicativeExpressionImplGen(MULTIPLICATIVE_EXPRESSION)(8049,8056) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8049,8052) + PsiElement($)('$')(8049,8050) + PowerShellIdentifierImplGen(IDENTIFIER)(8050,8052) + PsiElement(SIMPLE_ID)('p1')(8050,8052) + PsiElement(*)('*')(8052,8053) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8053,8056) + PsiElement($)('$')(8053,8054) + PowerShellIdentifierImplGen(IDENTIFIER)(8054,8056) + PsiElement(SIMPLE_ID)('p2')(8054,8056) + PsiWhiteSpace(' ')(8056,8057) + PsiElement(})('}')(8057,8058) + PsiElement(NLS)('\n')(8058,8059) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8059,8111) + PowerShellCommandNameImplGen(COMMAND_NAME)(8059,8067) + PowerShellIdentifierImplGen(IDENTIFIER)(8059,8067) + PsiElement(GENERIC_ID_PART)('New-Item')(8059,8067) + PsiWhiteSpace(' ')(8067,8068) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8068,8073) + PsiElement(CMD_PARAMETER)('-Path')(8068,8073) + PsiWhiteSpace(' ')(8073,8074) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8074,8085) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8074,8085) + PsiElement(DQ_OPEN)('"')(8074,8075) + PsiElement(EXPANDABLE_STRING_PART)('Variable:')(8075,8084) + PsiElement(DQ_CLOSE)('"')(8084,8085) + PsiWhiteSpace(' ')(8085,8086) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8086,8091) + PsiElement(CMD_PARAMETER)('-Name')(8086,8091) + PsiWhiteSpace(' ')(8091,8092) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8092,8100) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8092,8100) + PsiElement(DQ_OPEN)('"')(8092,8093) + PsiElement(EXPANDABLE_STRING_PART)('MyVar1')(8093,8099) + PsiElement(DQ_CLOSE)('"')(8099,8100) + PsiWhiteSpace(' ')(8100,8101) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8101,8107) + PsiElement(CMD_PARAMETER)('-Value')(8101,8107) PsiWhiteSpace(' ')(8107,8108) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8108,8113) - PsiElement(CMD_PARAMETER)('-Name')(8108,8113) - PsiWhiteSpace(' ')(8113,8114) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8114,8122) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8114,8122) - PsiElement(DQ_OPEN)('"')(8114,8115) - PsiElement(EXPANDABLE_STRING_PART)('MyVar1')(8115,8121) - PsiElement(DQ_CLOSE)('"')(8121,8122) - PsiWhiteSpace(' ')(8122,8123) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8123,8129) - PsiElement(CMD_PARAMETER)('-Value')(8123,8129) - PsiWhiteSpace(' ')(8129,8130) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8130,8133) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8130,8133) - PsiElement(DEC_INTEGER)('100')(8130,8133) - PsiElement(NLS)('\n\n')(8133,8135) - PsiComment(COMMENT)('#Creates a dynamic module (§11.7).')(8135,8169) - PsiElement(NLS)('\n')(8169,8170) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8170,8228) - PowerShellCommandNameImplGen(COMMAND_NAME)(8170,8180) - PowerShellIdentifierImplGen(IDENTIFIER)(8170,8180) - PsiElement(GENERIC_ID_PART)('New-Module')(8170,8180) - PsiWhiteSpace(' ')(8180,8181) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8181,8186) - PsiElement(CMD_PARAMETER)('-Name')(8181,8186) - PsiWhiteSpace(' ')(8186,8187) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8187,8194) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8187,8194) - PsiElement(SIMPLE_ID)('DynMod1')(8187,8194) - PsiWhiteSpace(' ')(8194,8195) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8195,8207) - PsiElement(CMD_PARAMETER)('-ScriptBlock')(8195,8207) - PsiWhiteSpace(' ')(8207,8208) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8208,8228) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8208,8228) - PsiElement({)('{')(8208,8209) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8209,8226) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8209,8226) - PsiElement(function)('function')(8209,8217) - PsiWhiteSpace(' ')(8217,8218) - PowerShellIdentifierImplGen(IDENTIFIER)(8218,8220) - PsiElement(SIMPLE_ID)('F1')(8218,8220) - PsiWhiteSpace(' ')(8220,8221) - PsiElement({)('{')(8221,8222) - PsiWhiteSpace(' ')(8222,8223) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8223,8224) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8223,8224) - PowerShellCommandNameImplGen(COMMAND_NAME)(8223,8224) - PowerShellIdentifierImplGen(IDENTIFIER)(8223,8224) - PsiElement(GENERIC_ID_PART)('…')(8223,8224) - PsiWhiteSpace(' ')(8224,8225) - PsiElement(})('}')(8225,8226) - PsiWhiteSpace(' ')(8226,8227) - PsiElement(})('}')(8227,8228) - PsiElement(NLS)('\n')(8228,8229) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8229,8290) - PowerShellCommandNameImplGen(COMMAND_NAME)(8229,8239) - PowerShellIdentifierImplGen(IDENTIFIER)(8229,8239) - PsiElement(GENERIC_ID_PART)('New-Module')(8229,8239) - PsiWhiteSpace(' ')(8239,8240) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8240,8245) - PsiElement(CMD_PARAMETER)('-Name')(8240,8245) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8108,8111) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8108,8111) + PsiElement(DEC_INTEGER)('100')(8108,8111) + PsiElement(NLS)('\n\n')(8111,8113) + PsiComment(COMMENT)('#Creates a dynamic module (§11.7).')(8113,8147) + PsiElement(NLS)('\n')(8147,8148) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8148,8206) + PowerShellCommandNameImplGen(COMMAND_NAME)(8148,8158) + PowerShellIdentifierImplGen(IDENTIFIER)(8148,8158) + PsiElement(GENERIC_ID_PART)('New-Module')(8148,8158) + PsiWhiteSpace(' ')(8158,8159) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8159,8164) + PsiElement(CMD_PARAMETER)('-Name')(8159,8164) + PsiWhiteSpace(' ')(8164,8165) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8165,8172) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8165,8172) + PsiElement(SIMPLE_ID)('DynMod1')(8165,8172) + PsiWhiteSpace(' ')(8172,8173) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8173,8185) + PsiElement(CMD_PARAMETER)('-ScriptBlock')(8173,8185) + PsiWhiteSpace(' ')(8185,8186) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8186,8206) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8186,8206) + PsiElement({)('{')(8186,8187) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8187,8204) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8187,8204) + PsiElement(function)('function')(8187,8195) + PsiWhiteSpace(' ')(8195,8196) + PowerShellIdentifierImplGen(IDENTIFIER)(8196,8198) + PsiElement(SIMPLE_ID)('F1')(8196,8198) + PsiWhiteSpace(' ')(8198,8199) + PsiElement({)('{')(8199,8200) + PsiWhiteSpace(' ')(8200,8201) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8201,8202) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8201,8202) + PowerShellCommandNameImplGen(COMMAND_NAME)(8201,8202) + PowerShellIdentifierImplGen(IDENTIFIER)(8201,8202) + PsiElement(GENERIC_ID_PART)('…')(8201,8202) + PsiWhiteSpace(' ')(8202,8203) + PsiElement(})('}')(8203,8204) + PsiWhiteSpace(' ')(8204,8205) + PsiElement(})('}')(8205,8206) + PsiElement(NLS)('\n')(8206,8207) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8207,8268) + PowerShellCommandNameImplGen(COMMAND_NAME)(8207,8217) + PowerShellIdentifierImplGen(IDENTIFIER)(8207,8217) + PsiElement(GENERIC_ID_PART)('New-Module')(8207,8217) + PsiWhiteSpace(' ')(8217,8218) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8218,8223) + PsiElement(CMD_PARAMETER)('-Name')(8218,8223) + PsiWhiteSpace(' ')(8223,8224) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8224,8231) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8224,8231) + PsiElement(SIMPLE_ID)('DynMod2')(8224,8231) + PsiWhiteSpace(' ')(8231,8232) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8232,8245) + PsiElement(CMD_PARAMETER)('-ArgumentList')(8232,8245) PsiWhiteSpace(' ')(8245,8246) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8246,8253) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8246,8253) - PsiElement(SIMPLE_ID)('DynMod2')(8246,8253) - PsiWhiteSpace(' ')(8253,8254) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8254,8267) - PsiElement(CMD_PARAMETER)('-ArgumentList')(8254,8267) - PsiWhiteSpace(' ')(8267,8268) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8268,8271) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8268,8271) - PsiElement(DEC_INTEGER)('123')(8268,8271) - PsiElement(,)(',')(8271,8272) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8272,8277) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8272,8277) - PsiElement(DQ_OPEN)('"')(8272,8273) - PsiElement(EXPANDABLE_STRING_PART)('abc')(8273,8276) - PsiElement(DQ_CLOSE)('"')(8276,8277) - PsiWhiteSpace(' ')(8277,8278) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8278,8290) - PsiElement(CMD_PARAMETER)('-ScriptBlock')(8278,8290) - PsiElement(NLS)('\n')(8290,8291) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8291,8328) - PsiElement({)('{')(8291,8292) - PsiWhiteSpace(' ')(8292,8293) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8293,8326) - PowerShellBlockParameterClauseImplGen(BLOCK_PARAMETER_CLAUSE)(8293,8308) - PsiElement(param)('param')(8293,8298) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8246,8249) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8246,8249) + PsiElement(DEC_INTEGER)('123')(8246,8249) + PsiElement(,)(',')(8249,8250) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8250,8255) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8250,8255) + PsiElement(DQ_OPEN)('"')(8250,8251) + PsiElement(EXPANDABLE_STRING_PART)('abc')(8251,8254) + PsiElement(DQ_CLOSE)('"')(8254,8255) + PsiWhiteSpace(' ')(8255,8256) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8256,8268) + PsiElement(CMD_PARAMETER)('-ScriptBlock')(8256,8268) + PsiElement(NLS)('\n')(8268,8269) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8269,8306) + PsiElement({)('{')(8269,8270) + PsiWhiteSpace(' ')(8270,8271) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8271,8304) + PowerShellBlockParameterClauseImplGen(BLOCK_PARAMETER_CLAUSE)(8271,8286) + PsiElement(param)('param')(8271,8276) + PsiWhiteSpace(' ')(8276,8277) + PsiElement(()('(')(8277,8278) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8278,8281) + PsiElement($)('$')(8278,8279) + PowerShellIdentifierImplGen(IDENTIFIER)(8279,8281) + PsiElement(SIMPLE_ID)('p1')(8279,8281) + PsiElement(,)(',')(8281,8282) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8282,8285) + PsiElement($)('$')(8282,8283) + PowerShellIdentifierImplGen(IDENTIFIER)(8283,8285) + PsiElement(SIMPLE_ID)('p2')(8283,8285) + PsiElement())(')')(8285,8286) + PsiWhiteSpace(' ')(8286,8287) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8287,8304) + PsiElement(function)('function')(8287,8295) + PsiWhiteSpace(' ')(8295,8296) + PowerShellIdentifierImplGen(IDENTIFIER)(8296,8298) + PsiElement(SIMPLE_ID)('F2')(8296,8298) PsiWhiteSpace(' ')(8298,8299) - PsiElement(()('(')(8299,8300) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8300,8303) - PsiElement($)('$')(8300,8301) - PowerShellIdentifierImplGen(IDENTIFIER)(8301,8303) - PsiElement(SIMPLE_ID)('p1')(8301,8303) - PsiElement(,)(',')(8303,8304) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8304,8307) - PsiElement($)('$')(8304,8305) - PowerShellIdentifierImplGen(IDENTIFIER)(8305,8307) - PsiElement(SIMPLE_ID)('p2')(8305,8307) - PsiElement())(')')(8307,8308) - PsiWhiteSpace(' ')(8308,8309) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8309,8326) - PsiElement(function)('function')(8309,8317) - PsiWhiteSpace(' ')(8317,8318) - PowerShellIdentifierImplGen(IDENTIFIER)(8318,8320) - PsiElement(SIMPLE_ID)('F2')(8318,8320) - PsiWhiteSpace(' ')(8320,8321) - PsiElement({)('{')(8321,8322) - PsiWhiteSpace(' ')(8322,8323) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8323,8324) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8323,8324) - PowerShellCommandNameImplGen(COMMAND_NAME)(8323,8324) - PowerShellIdentifierImplGen(IDENTIFIER)(8323,8324) - PsiElement(GENERIC_ID_PART)('…')(8323,8324) - PsiWhiteSpace(' ')(8324,8325) - PsiElement(})('}')(8325,8326) - PsiWhiteSpace(' ')(8326,8327) - PsiElement(})('}')(8327,8328) - PsiElement(NLS)('\n')(8328,8329) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8329,8403) - PowerShellCommandNameImplGen(COMMAND_NAME)(8329,8339) - PowerShellIdentifierImplGen(IDENTIFIER)(8329,8339) - PsiElement(GENERIC_ID_PART)('New-Module')(8329,8339) - PsiWhiteSpace(' ')(8339,8340) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8340,8345) - PsiElement(CMD_PARAMETER)('-Name')(8340,8345) - PsiWhiteSpace(' ')(8345,8346) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8346,8353) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8346,8353) - PsiElement(SIMPLE_ID)('DynMod3')(8346,8353) - PsiWhiteSpace(' ')(8353,8354) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8354,8369) - PsiElement(CMD_PARAMETER)('-AsCustomObject')(8354,8369) - PsiWhiteSpace(' ')(8369,8370) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8370,8382) - PsiElement(CMD_PARAMETER)('-ScriptBlock')(8370,8382) - PsiWhiteSpace(' ')(8382,8383) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8383,8403) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8383,8403) - PsiElement({)('{')(8383,8384) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8384,8401) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8384,8401) - PsiElement(function)('function')(8384,8392) - PsiWhiteSpace(' ')(8392,8393) - PowerShellIdentifierImplGen(IDENTIFIER)(8393,8395) - PsiElement(SIMPLE_ID)('F3')(8393,8395) - PsiWhiteSpace(' ')(8395,8396) - PsiElement({)('{')(8396,8397) - PsiWhiteSpace(' ')(8397,8398) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8398,8399) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8398,8399) - PowerShellCommandNameImplGen(COMMAND_NAME)(8398,8399) - PowerShellIdentifierImplGen(IDENTIFIER)(8398,8399) - PsiElement(GENERIC_ID_PART)('…')(8398,8399) - PsiWhiteSpace(' ')(8399,8400) - PsiElement(})('}')(8400,8401) - PsiWhiteSpace(' ')(8401,8402) - PsiElement(})('}')(8402,8403) - PsiElement(NLS)('\n')(8403,8404) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8404,8478) - PowerShellCommandNameImplGen(COMMAND_NAME)(8404,8414) - PowerShellIdentifierImplGen(IDENTIFIER)(8404,8414) - PsiElement(GENERIC_ID_PART)('New-Module')(8404,8414) - PsiWhiteSpace(' ')(8414,8415) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8415,8420) - PsiElement(CMD_PARAMETER)('-Name')(8415,8420) + PsiElement({)('{')(8299,8300) + PsiWhiteSpace(' ')(8300,8301) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8301,8302) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8301,8302) + PowerShellCommandNameImplGen(COMMAND_NAME)(8301,8302) + PowerShellIdentifierImplGen(IDENTIFIER)(8301,8302) + PsiElement(GENERIC_ID_PART)('…')(8301,8302) + PsiWhiteSpace(' ')(8302,8303) + PsiElement(})('}')(8303,8304) + PsiWhiteSpace(' ')(8304,8305) + PsiElement(})('}')(8305,8306) + PsiElement(NLS)('\n')(8306,8307) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8307,8381) + PowerShellCommandNameImplGen(COMMAND_NAME)(8307,8317) + PowerShellIdentifierImplGen(IDENTIFIER)(8307,8317) + PsiElement(GENERIC_ID_PART)('New-Module')(8307,8317) + PsiWhiteSpace(' ')(8317,8318) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8318,8323) + PsiElement(CMD_PARAMETER)('-Name')(8318,8323) + PsiWhiteSpace(' ')(8323,8324) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8324,8331) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8324,8331) + PsiElement(SIMPLE_ID)('DynMod3')(8324,8331) + PsiWhiteSpace(' ')(8331,8332) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8332,8347) + PsiElement(CMD_PARAMETER)('-AsCustomObject')(8332,8347) + PsiWhiteSpace(' ')(8347,8348) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8348,8360) + PsiElement(CMD_PARAMETER)('-ScriptBlock')(8348,8360) + PsiWhiteSpace(' ')(8360,8361) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8361,8381) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8361,8381) + PsiElement({)('{')(8361,8362) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8362,8379) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8362,8379) + PsiElement(function)('function')(8362,8370) + PsiWhiteSpace(' ')(8370,8371) + PowerShellIdentifierImplGen(IDENTIFIER)(8371,8373) + PsiElement(SIMPLE_ID)('F3')(8371,8373) + PsiWhiteSpace(' ')(8373,8374) + PsiElement({)('{')(8374,8375) + PsiWhiteSpace(' ')(8375,8376) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8376,8377) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8376,8377) + PowerShellCommandNameImplGen(COMMAND_NAME)(8376,8377) + PowerShellIdentifierImplGen(IDENTIFIER)(8376,8377) + PsiElement(GENERIC_ID_PART)('…')(8376,8377) + PsiWhiteSpace(' ')(8377,8378) + PsiElement(})('}')(8378,8379) + PsiWhiteSpace(' ')(8379,8380) + PsiElement(})('}')(8380,8381) + PsiElement(NLS)('\n')(8381,8382) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8382,8456) + PowerShellCommandNameImplGen(COMMAND_NAME)(8382,8392) + PowerShellIdentifierImplGen(IDENTIFIER)(8382,8392) + PsiElement(GENERIC_ID_PART)('New-Module')(8382,8392) + PsiWhiteSpace(' ')(8392,8393) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8393,8398) + PsiElement(CMD_PARAMETER)('-Name')(8393,8398) + PsiWhiteSpace(' ')(8398,8399) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8399,8406) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8399,8406) + PsiElement(SIMPLE_ID)('DynMod4')(8399,8406) + PsiWhiteSpace(' ')(8406,8407) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8407,8420) + PsiElement(CMD_PARAMETER)('-ReturnResult')(8407,8420) PsiWhiteSpace(' ')(8420,8421) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8421,8428) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8421,8428) - PsiElement(SIMPLE_ID)('DynMod4')(8421,8428) - PsiWhiteSpace(' ')(8428,8429) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8429,8442) - PsiElement(CMD_PARAMETER)('-ReturnResult')(8429,8442) - PsiWhiteSpace(' ')(8442,8443) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8443,8455) - PsiElement(CMD_PARAMETER)('-ScriptBlock')(8443,8455) - PsiWhiteSpace(' ')(8455,8456) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8456,8478) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8456,8478) - PsiElement({)('{')(8456,8457) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8457,8476) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8457,8474) - PsiElement(function)('function')(8457,8465) - PsiWhiteSpace(' ')(8465,8466) - PowerShellIdentifierImplGen(IDENTIFIER)(8466,8468) - PsiElement(SIMPLE_ID)('F4')(8466,8468) - PsiWhiteSpace(' ')(8468,8469) - PsiElement({)('{')(8469,8470) - PsiWhiteSpace(' ')(8470,8471) - PowerShellBlockBodyImplGen(BLOCK_BODY)(8471,8472) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8471,8472) - PowerShellCommandNameImplGen(COMMAND_NAME)(8471,8472) - PowerShellIdentifierImplGen(IDENTIFIER)(8471,8472) - PsiElement(GENERIC_ID_PART)('…')(8471,8472) - PsiWhiteSpace(' ')(8472,8473) - PsiElement(})('}')(8473,8474) - PsiWhiteSpace(' ')(8474,8475) - PsiElement(;)(';')(8475,8476) - PsiWhiteSpace(' ')(8476,8477) - PsiElement(})('}')(8477,8478) - PsiElement(NLS)('\n\n')(8478,8480) - PsiComment(COMMENT)('#Creates an object of the given type.')(8480,8517) - PsiElement(NLS)('\n')(8517,8518) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8518,8535) - PowerShellCommandNameImplGen(COMMAND_NAME)(8518,8528) - PowerShellIdentifierImplGen(IDENTIFIER)(8518,8528) - PsiElement(GENERIC_ID_PART)('New-Object')(8518,8528) - PsiWhiteSpace(' ')(8528,8529) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8529,8535) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8529,8535) - PsiElement(VERBATIM_STRING)(''bool'')(8529,8535) - PsiElement(NLS)('\n')(8535,8536) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8536,8569) - PowerShellCommandNameImplGen(COMMAND_NAME)(8536,8546) - PowerShellIdentifierImplGen(IDENTIFIER)(8536,8546) - PsiElement(GENERIC_ID_PART)('New-Object')(8536,8546) - PsiWhiteSpace(' ')(8546,8547) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8547,8555) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8547,8555) - PsiElement(VERBATIM_STRING)(''string'')(8547,8555) - PsiWhiteSpace(' ')(8555,8556) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8556,8569) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8556,8569) - PsiElement(VERBATIM_STRING)(''A red house'')(8556,8569) - PsiElement(NLS)('\n')(8569,8570) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8570,8590) - PowerShellCommandNameImplGen(COMMAND_NAME)(8570,8580) - PowerShellIdentifierImplGen(IDENTIFIER)(8570,8580) - PsiElement(GENERIC_ID_PART)('New-Object')(8570,8580) - PsiWhiteSpace(' ')(8580,8581) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8581,8588) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8581,8588) - PsiElement(VERBATIM_STRING)(''int[]'')(8581,8588) - PsiWhiteSpace(' ')(8588,8589) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8589,8590) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8589,8590) - PsiElement(DEC_INTEGER)('0')(8589,8590) - PsiElement(NLS)('\n')(8590,8591) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8591,8618) - PowerShellCommandNameImplGen(COMMAND_NAME)(8591,8601) - PowerShellIdentifierImplGen(IDENTIFIER)(8591,8601) - PsiElement(GENERIC_ID_PART)('New-Object')(8591,8601) - PsiWhiteSpace(' ')(8601,8602) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8602,8613) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8602,8613) - PsiElement(VERBATIM_STRING)(''double[,]'')(8602,8613) - PsiWhiteSpace(' ')(8613,8614) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8614,8615) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8614,8615) - PsiElement(DEC_INTEGER)('3')(8614,8615) - PsiElement(,)(',')(8615,8616) - PsiWhiteSpace(' ')(8616,8617) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8617,8618) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8617,8618) - PsiElement(DEC_INTEGER)('2')(8617,8618) - PsiElement(NLS)('\n')(8618,8619) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8619,8671) - PowerShellCommandNameImplGen(COMMAND_NAME)(8619,8629) - PowerShellIdentifierImplGen(IDENTIFIER)(8619,8629) - PsiElement(GENERIC_ID_PART)('New-Object')(8619,8629) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8421,8433) + PsiElement(CMD_PARAMETER)('-ScriptBlock')(8421,8433) + PsiWhiteSpace(' ')(8433,8434) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8434,8456) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(8434,8456) + PsiElement({)('{')(8434,8435) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8435,8454) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(8435,8452) + PsiElement(function)('function')(8435,8443) + PsiWhiteSpace(' ')(8443,8444) + PowerShellIdentifierImplGen(IDENTIFIER)(8444,8446) + PsiElement(SIMPLE_ID)('F4')(8444,8446) + PsiWhiteSpace(' ')(8446,8447) + PsiElement({)('{')(8447,8448) + PsiWhiteSpace(' ')(8448,8449) + PowerShellBlockBodyImplGen(BLOCK_BODY)(8449,8450) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8449,8450) + PowerShellCommandNameImplGen(COMMAND_NAME)(8449,8450) + PowerShellIdentifierImplGen(IDENTIFIER)(8449,8450) + PsiElement(GENERIC_ID_PART)('…')(8449,8450) + PsiWhiteSpace(' ')(8450,8451) + PsiElement(})('}')(8451,8452) + PsiWhiteSpace(' ')(8452,8453) + PsiElement(;)(';')(8453,8454) + PsiWhiteSpace(' ')(8454,8455) + PsiElement(})('}')(8455,8456) + PsiElement(NLS)('\n\n')(8456,8458) + PsiComment(COMMENT)('#Creates an object of the given type.')(8458,8495) + PsiElement(NLS)('\n')(8495,8496) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8496,8513) + PowerShellCommandNameImplGen(COMMAND_NAME)(8496,8506) + PowerShellIdentifierImplGen(IDENTIFIER)(8496,8506) + PsiElement(GENERIC_ID_PART)('New-Object')(8496,8506) + PsiWhiteSpace(' ')(8506,8507) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8507,8513) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8507,8513) + PsiElement(VERBATIM_STRING)(''bool'')(8507,8513) + PsiElement(NLS)('\n')(8513,8514) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8514,8547) + PowerShellCommandNameImplGen(COMMAND_NAME)(8514,8524) + PowerShellIdentifierImplGen(IDENTIFIER)(8514,8524) + PsiElement(GENERIC_ID_PART)('New-Object')(8514,8524) + PsiWhiteSpace(' ')(8524,8525) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8525,8533) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8525,8533) + PsiElement(VERBATIM_STRING)(''string'')(8525,8533) + PsiWhiteSpace(' ')(8533,8534) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8534,8547) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8534,8547) + PsiElement(VERBATIM_STRING)(''A red house'')(8534,8547) + PsiElement(NLS)('\n')(8547,8548) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8548,8568) + PowerShellCommandNameImplGen(COMMAND_NAME)(8548,8558) + PowerShellIdentifierImplGen(IDENTIFIER)(8548,8558) + PsiElement(GENERIC_ID_PART)('New-Object')(8548,8558) + PsiWhiteSpace(' ')(8558,8559) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8559,8566) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8559,8566) + PsiElement(VERBATIM_STRING)(''int[]'')(8559,8566) + PsiWhiteSpace(' ')(8566,8567) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8567,8568) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8567,8568) + PsiElement(DEC_INTEGER)('0')(8567,8568) + PsiElement(NLS)('\n')(8568,8569) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8569,8596) + PowerShellCommandNameImplGen(COMMAND_NAME)(8569,8579) + PowerShellIdentifierImplGen(IDENTIFIER)(8569,8579) + PsiElement(GENERIC_ID_PART)('New-Object')(8569,8579) + PsiWhiteSpace(' ')(8579,8580) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8580,8591) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8580,8591) + PsiElement(VERBATIM_STRING)(''double[,]'')(8580,8591) + PsiWhiteSpace(' ')(8591,8592) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8592,8593) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8592,8593) + PsiElement(DEC_INTEGER)('3')(8592,8593) + PsiElement(,)(',')(8593,8594) + PsiWhiteSpace(' ')(8594,8595) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8595,8596) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8595,8596) + PsiElement(DEC_INTEGER)('2')(8595,8596) + PsiElement(NLS)('\n')(8596,8597) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8597,8649) + PowerShellCommandNameImplGen(COMMAND_NAME)(8597,8607) + PowerShellIdentifierImplGen(IDENTIFIER)(8597,8607) + PsiElement(GENERIC_ID_PART)('New-Object')(8597,8607) + PsiWhiteSpace(' ')(8607,8608) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8608,8621) + PsiElement(CMD_PARAMETER)('-ArgumentList')(8608,8621) + PsiWhiteSpace(' ')(8621,8622) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8622,8623) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8622,8623) + PsiElement(DEC_INTEGER)('2')(8622,8623) + PsiElement(,)(',')(8623,8624) + PsiWhiteSpace(' ')(8624,8625) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8625,8626) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8625,8626) + PsiElement(DEC_INTEGER)('4')(8625,8626) + PsiElement(,)(',')(8626,8627) + PsiWhiteSpace(' ')(8627,8628) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8628,8629) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8628,8629) + PsiElement(DEC_INTEGER)('3')(8628,8629) PsiWhiteSpace(' ')(8629,8630) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8630,8643) - PsiElement(CMD_PARAMETER)('-ArgumentList')(8630,8643) - PsiWhiteSpace(' ')(8643,8644) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8644,8645) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8644,8645) - PsiElement(DEC_INTEGER)('2')(8644,8645) - PsiElement(,)(',')(8645,8646) - PsiWhiteSpace(' ')(8646,8647) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8647,8648) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8647,8648) - PsiElement(DEC_INTEGER)('4')(8647,8648) - PsiElement(,)(',')(8648,8649) - PsiWhiteSpace(' ')(8649,8650) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8650,8651) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8650,8651) - PsiElement(DEC_INTEGER)('3')(8650,8651) - PsiWhiteSpace(' ')(8651,8652) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8652,8661) - PsiElement(CMD_PARAMETER)('-TypeName')(8652,8661) - PsiWhiteSpace(' ')(8661,8662) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8662,8671) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8662,8671) - PsiElement(VERBATIM_STRING)(''int[,,]'')(8662,8671) - PsiElement(NLS)('\n\n')(8671,8673) - PsiComment(COMMENT)('#Creates a new variable.')(8673,8697) - PsiElement(NLS)('\n')(8697,8698) - PsiComment(COMMENT)('# The following are equivalent; they all create a variable called $Count1')(8698,8771) - PsiElement(NLS)('\n')(8771,8772) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8772,8810) - PowerShellCommandNameImplGen(COMMAND_NAME)(8772,8784) - PowerShellIdentifierImplGen(IDENTIFIER)(8772,8784) - PsiElement(GENERIC_ID_PART)('New-Variable')(8772,8784) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8630,8639) + PsiElement(CMD_PARAMETER)('-TypeName')(8630,8639) + PsiWhiteSpace(' ')(8639,8640) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8640,8649) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8640,8649) + PsiElement(VERBATIM_STRING)(''int[,,]'')(8640,8649) + PsiElement(NLS)('\n\n')(8649,8651) + PsiComment(COMMENT)('#Creates a new variable.')(8651,8675) + PsiElement(NLS)('\n')(8675,8676) + PsiComment(COMMENT)('# The following are equivalent; they all create a variable called $Count1')(8676,8749) + PsiElement(NLS)('\n')(8749,8750) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8750,8788) + PowerShellCommandNameImplGen(COMMAND_NAME)(8750,8762) + PowerShellIdentifierImplGen(IDENTIFIER)(8750,8762) + PsiElement(GENERIC_ID_PART)('New-Variable')(8750,8762) + PsiWhiteSpace(' ')(8762,8763) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8763,8768) + PsiElement(CMD_PARAMETER)('-Name')(8763,8768) + PsiWhiteSpace(' ')(8768,8769) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8769,8777) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8769,8777) + PsiElement(VERBATIM_STRING)(''Count1'')(8769,8777) + PsiWhiteSpace(' ')(8777,8778) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8778,8784) + PsiElement(CMD_PARAMETER)('-Value')(8778,8784) PsiWhiteSpace(' ')(8784,8785) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8785,8790) - PsiElement(CMD_PARAMETER)('-Name')(8785,8790) - PsiWhiteSpace(' ')(8790,8791) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8791,8799) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8791,8799) - PsiElement(VERBATIM_STRING)(''Count1'')(8791,8799) - PsiWhiteSpace(' ')(8799,8800) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8800,8806) - PsiElement(CMD_PARAMETER)('-Value')(8800,8806) - PsiWhiteSpace(' ')(8806,8807) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8807,8810) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8807,8810) - PsiElement(DEC_INTEGER)('100')(8807,8810) - PsiElement(NLS)('\n')(8810,8811) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8811,8842) - PowerShellCommandNameImplGen(COMMAND_NAME)(8811,8823) - PowerShellIdentifierImplGen(IDENTIFIER)(8811,8823) - PsiElement(GENERIC_ID_PART)('New-Variable')(8811,8823) - PsiWhiteSpace(' ')(8823,8824) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8824,8829) - PsiElement(CMD_PARAMETER)('-Name')(8824,8829) - PsiWhiteSpace(' ')(8829,8830) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8830,8838) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8830,8838) - PsiElement(VERBATIM_STRING)(''Count1'')(8830,8838) - PsiWhiteSpace(' ')(8838,8839) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8839,8842) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8839,8842) - PsiElement(DEC_INTEGER)('100')(8839,8842) - PsiElement(NLS)('\n')(8842,8843) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8843,8875) - PowerShellCommandNameImplGen(COMMAND_NAME)(8843,8855) - PowerShellIdentifierImplGen(IDENTIFIER)(8843,8855) - PsiElement(GENERIC_ID_PART)('New-Variable')(8843,8855) - PsiWhiteSpace(' ')(8855,8856) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8856,8864) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8856,8864) - PsiElement(VERBATIM_STRING)(''Count1'')(8856,8864) - PsiWhiteSpace(' ')(8864,8865) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8865,8871) - PsiElement(CMD_PARAMETER)('-Value')(8865,8871) - PsiWhiteSpace(' ')(8871,8872) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8872,8875) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8872,8875) - PsiElement(DEC_INTEGER)('100')(8872,8875) - PsiElement(NLS)('\n')(8875,8876) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8876,8901) - PowerShellCommandNameImplGen(COMMAND_NAME)(8876,8888) - PowerShellIdentifierImplGen(IDENTIFIER)(8876,8888) - PsiElement(GENERIC_ID_PART)('New-Variable')(8876,8888) - PsiWhiteSpace(' ')(8888,8889) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8889,8897) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8889,8897) - PsiElement(VERBATIM_STRING)(''Count1'')(8889,8897) - PsiWhiteSpace(' ')(8897,8898) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8898,8901) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8898,8901) - PsiElement(DEC_INTEGER)('100')(8898,8901) - PsiElement(NLS)('\n')(8901,8902) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8902,8918) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8902,8907) - PsiElement($)('$')(8902,8903) - PowerShellIdentifierImplGen(IDENTIFIER)(8903,8907) - PsiElement(SIMPLE_ID)('name')(8903,8907) - PsiWhiteSpace(' ')(8907,8908) - PsiElement(=)('=')(8908,8909) - PsiWhiteSpace(' ')(8909,8910) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8910,8918) - PsiElement(VERBATIM_STRING)(''Count1'')(8910,8918) - PsiElement(;)(';')(8918,8919) - PsiWhiteSpace(' ')(8919,8920) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8920,8932) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8920,8926) - PsiElement($)('$')(8920,8921) - PowerShellIdentifierImplGen(IDENTIFIER)(8921,8926) - PsiElement(SIMPLE_ID)('value')(8921,8926) - PsiWhiteSpace(' ')(8926,8927) - PsiElement(=)('=')(8927,8928) - PsiWhiteSpace(' ')(8928,8929) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8929,8932) - PsiElement(DEC_INTEGER)('100')(8929,8932) - PsiElement(NLS)('\n')(8932,8933) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8933,8958) - PowerShellCommandNameImplGen(COMMAND_NAME)(8933,8945) - PowerShellIdentifierImplGen(IDENTIFIER)(8933,8945) - PsiElement(GENERIC_ID_PART)('New-Variable')(8933,8945) - PsiWhiteSpace(' ')(8945,8946) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8946,8951) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8946,8951) - PsiElement($)('$')(8946,8947) - PowerShellIdentifierImplGen(IDENTIFIER)(8947,8951) - PsiElement(SIMPLE_ID)('name')(8947,8951) - PsiWhiteSpace(' ')(8951,8952) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8952,8958) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8952,8958) - PsiElement($)('$')(8952,8953) - PowerShellIdentifierImplGen(IDENTIFIER)(8953,8958) - PsiElement(SIMPLE_ID)('value')(8953,8958) - PsiElement(NLS)('\n')(8958,8959) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8959,8972) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8959,8966) - PsiElement($)('$')(8959,8960) - PowerShellIdentifierImplGen(IDENTIFIER)(8960,8966) - PsiElement(SIMPLE_ID)('Count1')(8960,8966) - PsiWhiteSpace(' ')(8966,8967) - PsiElement(=)('=')(8967,8968) - PsiWhiteSpace(' ')(8968,8969) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8969,8972) - PsiElement(DEC_INTEGER)('100')(8969,8972) - PsiElement(NLS)('\n')(8972,8973) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8973,9027) - PowerShellCommandNameImplGen(COMMAND_NAME)(8973,8985) - PowerShellIdentifierImplGen(IDENTIFIER)(8973,8985) - PsiElement(GENERIC_ID_PART)('New-Variable')(8973,8985) - PsiWhiteSpace(' ')(8985,8986) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8986,8991) - PsiElement(CMD_PARAMETER)('-Name')(8986,8991) - PsiWhiteSpace(' ')(8991,8992) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8992,8999) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8992,8999) - PsiElement(SIMPLE_ID)('Count30')(8992,8999) - PsiWhiteSpace(' ')(8999,9000) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9000,9006) - PsiElement(CMD_PARAMETER)('-Value')(9000,9006) - PsiWhiteSpace(' ')(9006,9007) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9007,9010) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9007,9010) - PsiElement(DEC_INTEGER)('150')(9007,9010) - PsiWhiteSpace(' ')(9010,9011) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9011,9018) - PsiElement(CMD_PARAMETER)('-Option')(9011,9018) - PsiWhiteSpace(' ')(9018,9019) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9019,9027) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9019,9027) - PsiElement(SIMPLE_ID)('ReadOnly')(9019,9027) - PsiElement(NLS)('\n')(9027,9028) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9028,9042) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9028,9036) - PsiElement($)('$')(9028,9029) - PowerShellIdentifierImplGen(IDENTIFIER)(9029,9036) - PsiElement(SIMPLE_ID)('Count30')(9029,9036) - PsiWhiteSpace(' ')(9036,9037) - PsiElement(=)('=')(9037,9038) - PsiWhiteSpace(' ')(9038,9039) - PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(9039,9042) - PsiElement(DASH)('-')(9039,9040) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9040,9042) - PsiElement(DEC_INTEGER)('40')(9040,9042) - PsiWhiteSpace(' \t\t')(9042,9048) - PsiComment(COMMENT)('# rejected as $Count30 is read-only')(9048,9083) - PsiElement(NLS)('\n\n')(9083,9085) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9085,9129) - PowerShellCommandNameImplGen(COMMAND_NAME)(9085,9097) - PowerShellIdentifierImplGen(IDENTIFIER)(9085,9097) - PsiElement(GENERIC_ID_PART)('New-Variable')(9085,9097) - PsiWhiteSpace(' ')(9097,9098) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9098,9103) - PsiElement(CMD_PARAMETER)('-Name')(9098,9103) - PsiWhiteSpace(' ')(9103,9104) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9104,9111) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9104,9111) - PsiElement(SIMPLE_ID)('Count30')(9104,9111) - PsiWhiteSpace(' ')(9111,9112) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9112,9118) - PsiElement(CMD_PARAMETER)('-Value')(9112,9118) - PsiWhiteSpace(' ')(9118,9119) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9119,9122) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9119,9122) - PsiElement(DEC_INTEGER)('151')(9119,9122) - PsiWhiteSpace(' ')(9122,9123) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9123,9129) - PsiElement(CMD_PARAMETER)('-Force')(9123,9129) - PsiWhiteSpace(' \t')(9129,9131) - PsiComment(COMMENT)('# overwrites Count30')(9131,9151) - PsiElement(NLS)('\n')(9151,9152) - PowerShellPipelineTailImplGen(PIPELINE)(9152,9210) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9152,9199) - PowerShellCommandNameImplGen(COMMAND_NAME)(9152,9164) - PowerShellIdentifierImplGen(IDENTIFIER)(9152,9164) - PsiElement(GENERIC_ID_PART)('New-Variable')(9152,9164) - PsiWhiteSpace(' ')(9164,9165) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9165,9170) - PsiElement(CMD_PARAMETER)('-Name')(9165,9170) - PsiWhiteSpace(' ')(9170,9171) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9171,9178) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9171,9178) - PsiElement(SIMPLE_ID)('Count51')(9171,9178) - PsiWhiteSpace(' ')(9178,9179) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9179,9185) - PsiElement(CMD_PARAMETER)('-Value')(9179,9185) - PsiWhiteSpace(' ')(9185,9186) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9186,9189) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9186,9189) - PsiElement(DEC_INTEGER)('200')(9186,9189) - PsiWhiteSpace(' ')(9189,9190) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9190,9199) - PsiElement(CMD_PARAMETER)('-PassThru')(9190,9199) - PsiWhiteSpace(' ')(9199,9200) - PsiElement(|)('|')(9200,9201) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8785,8788) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8785,8788) + PsiElement(DEC_INTEGER)('100')(8785,8788) + PsiElement(NLS)('\n')(8788,8789) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8789,8820) + PowerShellCommandNameImplGen(COMMAND_NAME)(8789,8801) + PowerShellIdentifierImplGen(IDENTIFIER)(8789,8801) + PsiElement(GENERIC_ID_PART)('New-Variable')(8789,8801) + PsiWhiteSpace(' ')(8801,8802) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8802,8807) + PsiElement(CMD_PARAMETER)('-Name')(8802,8807) + PsiWhiteSpace(' ')(8807,8808) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8808,8816) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8808,8816) + PsiElement(VERBATIM_STRING)(''Count1'')(8808,8816) + PsiWhiteSpace(' ')(8816,8817) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8817,8820) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8817,8820) + PsiElement(DEC_INTEGER)('100')(8817,8820) + PsiElement(NLS)('\n')(8820,8821) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8821,8853) + PowerShellCommandNameImplGen(COMMAND_NAME)(8821,8833) + PowerShellIdentifierImplGen(IDENTIFIER)(8821,8833) + PsiElement(GENERIC_ID_PART)('New-Variable')(8821,8833) + PsiWhiteSpace(' ')(8833,8834) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8834,8842) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8834,8842) + PsiElement(VERBATIM_STRING)(''Count1'')(8834,8842) + PsiWhiteSpace(' ')(8842,8843) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8843,8849) + PsiElement(CMD_PARAMETER)('-Value')(8843,8849) + PsiWhiteSpace(' ')(8849,8850) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8850,8853) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8850,8853) + PsiElement(DEC_INTEGER)('100')(8850,8853) + PsiElement(NLS)('\n')(8853,8854) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8854,8879) + PowerShellCommandNameImplGen(COMMAND_NAME)(8854,8866) + PowerShellIdentifierImplGen(IDENTIFIER)(8854,8866) + PsiElement(GENERIC_ID_PART)('New-Variable')(8854,8866) + PsiWhiteSpace(' ')(8866,8867) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8867,8875) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8867,8875) + PsiElement(VERBATIM_STRING)(''Count1'')(8867,8875) + PsiWhiteSpace(' ')(8875,8876) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8876,8879) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8876,8879) + PsiElement(DEC_INTEGER)('100')(8876,8879) + PsiElement(NLS)('\n')(8879,8880) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8880,8896) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8880,8885) + PsiElement($)('$')(8880,8881) + PowerShellIdentifierImplGen(IDENTIFIER)(8881,8885) + PsiElement(SIMPLE_ID)('name')(8881,8885) + PsiWhiteSpace(' ')(8885,8886) + PsiElement(=)('=')(8886,8887) + PsiWhiteSpace(' ')(8887,8888) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(8888,8896) + PsiElement(VERBATIM_STRING)(''Count1'')(8888,8896) + PsiElement(;)(';')(8896,8897) + PsiWhiteSpace(' ')(8897,8898) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8898,8910) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8898,8904) + PsiElement($)('$')(8898,8899) + PowerShellIdentifierImplGen(IDENTIFIER)(8899,8904) + PsiElement(SIMPLE_ID)('value')(8899,8904) + PsiWhiteSpace(' ')(8904,8905) + PsiElement(=)('=')(8905,8906) + PsiWhiteSpace(' ')(8906,8907) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8907,8910) + PsiElement(DEC_INTEGER)('100')(8907,8910) + PsiElement(NLS)('\n')(8910,8911) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8911,8936) + PowerShellCommandNameImplGen(COMMAND_NAME)(8911,8923) + PowerShellIdentifierImplGen(IDENTIFIER)(8911,8923) + PsiElement(GENERIC_ID_PART)('New-Variable')(8911,8923) + PsiWhiteSpace(' ')(8923,8924) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8924,8929) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8924,8929) + PsiElement($)('$')(8924,8925) + PowerShellIdentifierImplGen(IDENTIFIER)(8925,8929) + PsiElement(SIMPLE_ID)('name')(8925,8929) + PsiWhiteSpace(' ')(8929,8930) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8930,8936) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8930,8936) + PsiElement($)('$')(8930,8931) + PowerShellIdentifierImplGen(IDENTIFIER)(8931,8936) + PsiElement(SIMPLE_ID)('value')(8931,8936) + PsiElement(NLS)('\n')(8936,8937) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(8937,8950) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(8937,8944) + PsiElement($)('$')(8937,8938) + PowerShellIdentifierImplGen(IDENTIFIER)(8938,8944) + PsiElement(SIMPLE_ID)('Count1')(8938,8944) + PsiWhiteSpace(' ')(8944,8945) + PsiElement(=)('=')(8945,8946) + PsiWhiteSpace(' ')(8946,8947) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8947,8950) + PsiElement(DEC_INTEGER)('100')(8947,8950) + PsiElement(NLS)('\n')(8950,8951) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(8951,9005) + PowerShellCommandNameImplGen(COMMAND_NAME)(8951,8963) + PowerShellIdentifierImplGen(IDENTIFIER)(8951,8963) + PsiElement(GENERIC_ID_PART)('New-Variable')(8951,8963) + PsiWhiteSpace(' ')(8963,8964) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8964,8969) + PsiElement(CMD_PARAMETER)('-Name')(8964,8969) + PsiWhiteSpace(' ')(8969,8970) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8970,8977) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8970,8977) + PsiElement(SIMPLE_ID)('Count30')(8970,8977) + PsiWhiteSpace(' ')(8977,8978) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8978,8984) + PsiElement(CMD_PARAMETER)('-Value')(8978,8984) + PsiWhiteSpace(' ')(8984,8985) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8985,8988) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(8985,8988) + PsiElement(DEC_INTEGER)('150')(8985,8988) + PsiWhiteSpace(' ')(8988,8989) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(8989,8996) + PsiElement(CMD_PARAMETER)('-Option')(8989,8996) + PsiWhiteSpace(' ')(8996,8997) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(8997,9005) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(8997,9005) + PsiElement(SIMPLE_ID)('ReadOnly')(8997,9005) + PsiElement(NLS)('\n')(9005,9006) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9006,9020) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9006,9014) + PsiElement($)('$')(9006,9007) + PowerShellIdentifierImplGen(IDENTIFIER)(9007,9014) + PsiElement(SIMPLE_ID)('Count30')(9007,9014) + PsiWhiteSpace(' ')(9014,9015) + PsiElement(=)('=')(9015,9016) + PsiWhiteSpace(' ')(9016,9017) + PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(9017,9020) + PsiElement(DASH)('-')(9017,9018) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9018,9020) + PsiElement(DEC_INTEGER)('40')(9018,9020) + PsiWhiteSpace(' \t\t')(9020,9026) + PsiComment(COMMENT)('# rejected as $Count30 is read-only')(9026,9061) + PsiElement(NLS)('\n\n')(9061,9063) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9063,9107) + PowerShellCommandNameImplGen(COMMAND_NAME)(9063,9075) + PowerShellIdentifierImplGen(IDENTIFIER)(9063,9075) + PsiElement(GENERIC_ID_PART)('New-Variable')(9063,9075) + PsiWhiteSpace(' ')(9075,9076) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9076,9081) + PsiElement(CMD_PARAMETER)('-Name')(9076,9081) + PsiWhiteSpace(' ')(9081,9082) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9082,9089) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9082,9089) + PsiElement(SIMPLE_ID)('Count30')(9082,9089) + PsiWhiteSpace(' ')(9089,9090) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9090,9096) + PsiElement(CMD_PARAMETER)('-Value')(9090,9096) + PsiWhiteSpace(' ')(9096,9097) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9097,9100) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9097,9100) + PsiElement(DEC_INTEGER)('151')(9097,9100) + PsiWhiteSpace(' ')(9100,9101) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9101,9107) + PsiElement(CMD_PARAMETER)('-Force')(9101,9107) + PsiWhiteSpace(' \t')(9107,9109) + PsiComment(COMMENT)('# overwrites Count30')(9109,9129) + PsiElement(NLS)('\n')(9129,9130) + PowerShellPipelineTailImplGen(PIPELINE)(9130,9188) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9130,9177) + PowerShellCommandNameImplGen(COMMAND_NAME)(9130,9142) + PowerShellIdentifierImplGen(IDENTIFIER)(9130,9142) + PsiElement(GENERIC_ID_PART)('New-Variable')(9130,9142) + PsiWhiteSpace(' ')(9142,9143) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9143,9148) + PsiElement(CMD_PARAMETER)('-Name')(9143,9148) + PsiWhiteSpace(' ')(9148,9149) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9149,9156) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9149,9156) + PsiElement(SIMPLE_ID)('Count51')(9149,9156) + PsiWhiteSpace(' ')(9156,9157) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9157,9163) + PsiElement(CMD_PARAMETER)('-Value')(9157,9163) + PsiWhiteSpace(' ')(9163,9164) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9164,9167) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9164,9167) + PsiElement(DEC_INTEGER)('200')(9164,9167) + PsiWhiteSpace(' ')(9167,9168) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9168,9177) + PsiElement(CMD_PARAMETER)('-PassThru')(9168,9177) + PsiWhiteSpace(' ')(9177,9178) + PsiElement(|)('|')(9178,9179) + PsiWhiteSpace(' ')(9179,9180) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9180,9188) + PowerShellCommandNameImplGen(COMMAND_NAME)(9180,9188) + PowerShellIdentifierImplGen(IDENTIFIER)(9180,9188) + PsiElement(SIMPLE_ID)('CommandX')(9180,9188) + PsiElement(NLS)('\n')(9188,9189) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9189,9242) + PowerShellCommandNameImplGen(COMMAND_NAME)(9189,9201) + PowerShellIdentifierImplGen(IDENTIFIER)(9189,9201) + PsiElement(GENERIC_ID_PART)('New-Variable')(9189,9201) PsiWhiteSpace(' ')(9201,9202) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9202,9210) - PowerShellCommandNameImplGen(COMMAND_NAME)(9202,9210) - PowerShellIdentifierImplGen(IDENTIFIER)(9202,9210) - PsiElement(SIMPLE_ID)('CommandX')(9202,9210) - PsiElement(NLS)('\n')(9210,9211) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9211,9264) - PowerShellCommandNameImplGen(COMMAND_NAME)(9211,9223) - PowerShellIdentifierImplGen(IDENTIFIER)(9211,9223) - PsiElement(GENERIC_ID_PART)('New-Variable')(9211,9223) - PsiWhiteSpace(' ')(9223,9224) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9224,9229) - PsiElement(CMD_PARAMETER)('-Name')(9224,9229) - PsiWhiteSpace(' ')(9229,9230) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9230,9237) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9230,9237) - PsiElement(SIMPLE_ID)('Count61')(9230,9237) - PsiWhiteSpace(' ')(9237,9238) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9238,9244) - PsiElement(CMD_PARAMETER)('-Value')(9238,9244) - PsiWhiteSpace(' ')(9244,9245) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9245,9248) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9245,9248) - PsiElement(DEC_INTEGER)('200')(9245,9248) - PsiWhiteSpace(' ')(9248,9249) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9249,9255) - PsiElement(CMD_PARAMETER)('-Scope')(9249,9255) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9202,9207) + PsiElement(CMD_PARAMETER)('-Name')(9202,9207) + PsiWhiteSpace(' ')(9207,9208) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9208,9215) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9208,9215) + PsiElement(SIMPLE_ID)('Count61')(9208,9215) + PsiWhiteSpace(' ')(9215,9216) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9216,9222) + PsiElement(CMD_PARAMETER)('-Value')(9216,9222) + PsiWhiteSpace(' ')(9222,9223) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9223,9226) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9223,9226) + PsiElement(DEC_INTEGER)('200')(9223,9226) + PsiWhiteSpace(' ')(9226,9227) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9227,9233) + PsiElement(CMD_PARAMETER)('-Scope')(9227,9233) + PsiWhiteSpace(' ')(9233,9234) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9234,9242) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9234,9242) + PsiElement(DQ_OPEN)('"')(9234,9235) + PsiElement(EXPANDABLE_STRING_PART)('Script')(9235,9241) + PsiElement(DQ_CLOSE)('"')(9241,9242) + PsiElement(NLS)('\n')(9242,9243) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9243,9291) + PowerShellCommandNameImplGen(COMMAND_NAME)(9243,9255) + PowerShellIdentifierImplGen(IDENTIFIER)(9243,9255) + PsiElement(GENERIC_ID_PART)('New-Variable')(9243,9255) PsiWhiteSpace(' ')(9255,9256) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9256,9264) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9256,9264) - PsiElement(DQ_OPEN)('"')(9256,9257) - PsiElement(EXPANDABLE_STRING_PART)('Script')(9257,9263) - PsiElement(DQ_CLOSE)('"')(9263,9264) - PsiElement(NLS)('\n')(9264,9265) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9265,9313) - PowerShellCommandNameImplGen(COMMAND_NAME)(9265,9277) - PowerShellIdentifierImplGen(IDENTIFIER)(9265,9277) - PsiElement(GENERIC_ID_PART)('New-Variable')(9265,9277) - PsiWhiteSpace(' ')(9277,9278) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9278,9283) - PsiElement(CMD_PARAMETER)('-Name')(9278,9283) - PsiWhiteSpace(' ')(9283,9284) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9284,9291) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9284,9291) - PsiElement(SIMPLE_ID)('Count64')(9284,9291) - PsiWhiteSpace(' ')(9291,9292) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9292,9298) - PsiElement(CMD_PARAMETER)('-Value')(9292,9298) - PsiWhiteSpace(' ')(9298,9299) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9299,9302) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9299,9302) - PsiElement(DEC_INTEGER)('200')(9299,9302) - PsiWhiteSpace(' ')(9302,9303) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9303,9309) - PsiElement(CMD_PARAMETER)('-Scope')(9303,9309) - PsiWhiteSpace(' ')(9309,9310) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9310,9313) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9310,9313) - PsiElement(DQ_OPEN)('"')(9310,9311) - PsiElement(EXPANDABLE_STRING_PART)('0')(9311,9312) - PsiElement(DQ_CLOSE)('"')(9312,9313) - PsiWhiteSpace('\t\t')(9313,9315) - PsiComment(COMMENT)('# local scope')(9315,9328) - PsiElement(NLS)('\n')(9328,9329) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9329,9383) - PowerShellCommandNameImplGen(COMMAND_NAME)(9329,9341) - PowerShellIdentifierImplGen(IDENTIFIER)(9329,9341) - PsiElement(GENERIC_ID_PART)('New-Variable')(9329,9341) - PsiWhiteSpace(' ')(9341,9342) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9342,9347) - PsiElement(CMD_PARAMETER)('-Name')(9342,9347) - PsiWhiteSpace(' ')(9347,9348) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9348,9355) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9348,9355) - PsiElement(SIMPLE_ID)('Count70')(9348,9355) - PsiWhiteSpace(' ')(9355,9356) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9356,9362) - PsiElement(CMD_PARAMETER)('-Value')(9356,9362) - PsiWhiteSpace(' ')(9362,9363) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9363,9366) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9363,9366) - PsiElement(DEC_INTEGER)('150')(9363,9366) - PsiWhiteSpace(' ')(9366,9367) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9367,9374) - PsiElement(CMD_PARAMETER)('-Option')(9367,9374) - PsiWhiteSpace(' ')(9374,9375) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9375,9383) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9375,9383) - PsiElement(SIMPLE_ID)('Constant')(9375,9383) - PsiElement(NLS)('\n')(9383,9384) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9384,9398) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9384,9392) - PsiElement($)('$')(9384,9385) - PowerShellIdentifierImplGen(IDENTIFIER)(9385,9392) - PsiElement(SIMPLE_ID)('Count70')(9385,9392) - PsiWhiteSpace(' ')(9392,9393) - PsiElement(=)('=')(9393,9394) - PsiWhiteSpace(' ')(9394,9395) - PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(9395,9398) - PsiElement(DASH)('-')(9395,9396) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9396,9398) - PsiElement(DEC_INTEGER)('40')(9396,9398) - PsiWhiteSpace(' ')(9398,9402) - PsiComment(COMMENT)('# rejected as $count70 is not writable')(9402,9440) - PsiElement(NLS)('\n')(9440,9441) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9441,9494) - PowerShellCommandNameImplGen(COMMAND_NAME)(9441,9453) - PowerShellIdentifierImplGen(IDENTIFIER)(9441,9453) - PsiElement(GENERIC_ID_PART)('New-Variable')(9441,9453) - PsiWhiteSpace(' ')(9453,9454) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9454,9459) - PsiElement(CMD_PARAMETER)('-Name')(9454,9459) - PsiWhiteSpace(' ')(9459,9460) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9460,9467) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9460,9467) - PsiElement(SIMPLE_ID)('Count71')(9460,9467) - PsiWhiteSpace(' ')(9467,9468) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9468,9474) - PsiElement(CMD_PARAMETER)('-Value')(9468,9474) - PsiWhiteSpace(' ')(9474,9475) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9475,9478) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9475,9478) - PsiElement(DEC_INTEGER)('150')(9475,9478) - PsiWhiteSpace(' ')(9478,9479) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9479,9486) - PsiElement(CMD_PARAMETER)('-Option')(9479,9486) - PsiWhiteSpace(' ')(9486,9487) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9487,9494) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9487,9494) - PsiElement(SIMPLE_ID)('Private')(9487,9494) - PsiElement(NLS)('\n')(9494,9495) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9495,9549) - PowerShellCommandNameImplGen(COMMAND_NAME)(9495,9507) - PowerShellIdentifierImplGen(IDENTIFIER)(9495,9507) - PsiElement(GENERIC_ID_PART)('New-Variable')(9495,9507) - PsiWhiteSpace(' ')(9507,9508) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9508,9513) - PsiElement(CMD_PARAMETER)('-Name')(9508,9513) - PsiWhiteSpace(' ')(9513,9514) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9514,9521) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9514,9521) - PsiElement(SIMPLE_ID)('Count72')(9514,9521) - PsiWhiteSpace(' ')(9521,9522) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9522,9528) - PsiElement(CMD_PARAMETER)('-Value')(9522,9528) - PsiWhiteSpace(' ')(9528,9529) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9529,9532) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9529,9532) - PsiElement(DEC_INTEGER)('150')(9529,9532) - PsiWhiteSpace(' ')(9532,9533) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9533,9540) - PsiElement(CMD_PARAMETER)('-Option')(9533,9540) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9256,9261) + PsiElement(CMD_PARAMETER)('-Name')(9256,9261) + PsiWhiteSpace(' ')(9261,9262) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9262,9269) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9262,9269) + PsiElement(SIMPLE_ID)('Count64')(9262,9269) + PsiWhiteSpace(' ')(9269,9270) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9270,9276) + PsiElement(CMD_PARAMETER)('-Value')(9270,9276) + PsiWhiteSpace(' ')(9276,9277) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9277,9280) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9277,9280) + PsiElement(DEC_INTEGER)('200')(9277,9280) + PsiWhiteSpace(' ')(9280,9281) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9281,9287) + PsiElement(CMD_PARAMETER)('-Scope')(9281,9287) + PsiWhiteSpace(' ')(9287,9288) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9288,9291) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9288,9291) + PsiElement(DQ_OPEN)('"')(9288,9289) + PsiElement(EXPANDABLE_STRING_PART)('0')(9289,9290) + PsiElement(DQ_CLOSE)('"')(9290,9291) + PsiWhiteSpace('\t\t')(9291,9293) + PsiComment(COMMENT)('# local scope')(9293,9306) + PsiElement(NLS)('\n')(9306,9307) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9307,9361) + PowerShellCommandNameImplGen(COMMAND_NAME)(9307,9319) + PowerShellIdentifierImplGen(IDENTIFIER)(9307,9319) + PsiElement(GENERIC_ID_PART)('New-Variable')(9307,9319) + PsiWhiteSpace(' ')(9319,9320) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9320,9325) + PsiElement(CMD_PARAMETER)('-Name')(9320,9325) + PsiWhiteSpace(' ')(9325,9326) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9326,9333) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9326,9333) + PsiElement(SIMPLE_ID)('Count70')(9326,9333) + PsiWhiteSpace(' ')(9333,9334) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9334,9340) + PsiElement(CMD_PARAMETER)('-Value')(9334,9340) + PsiWhiteSpace(' ')(9340,9341) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9341,9344) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9341,9344) + PsiElement(DEC_INTEGER)('150')(9341,9344) + PsiWhiteSpace(' ')(9344,9345) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9345,9352) + PsiElement(CMD_PARAMETER)('-Option')(9345,9352) + PsiWhiteSpace(' ')(9352,9353) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9353,9361) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9353,9361) + PsiElement(SIMPLE_ID)('Constant')(9353,9361) + PsiElement(NLS)('\n')(9361,9362) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9362,9376) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9362,9370) + PsiElement($)('$')(9362,9363) + PowerShellIdentifierImplGen(IDENTIFIER)(9363,9370) + PsiElement(SIMPLE_ID)('Count70')(9363,9370) + PsiWhiteSpace(' ')(9370,9371) + PsiElement(=)('=')(9371,9372) + PsiWhiteSpace(' ')(9372,9373) + PowerShellUnaryExpressionImplGen(UNARY_EXPRESSION)(9373,9376) + PsiElement(DASH)('-')(9373,9374) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9374,9376) + PsiElement(DEC_INTEGER)('40')(9374,9376) + PsiWhiteSpace(' ')(9376,9380) + PsiComment(COMMENT)('# rejected as $count70 is not writable')(9380,9418) + PsiElement(NLS)('\n')(9418,9419) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9419,9472) + PowerShellCommandNameImplGen(COMMAND_NAME)(9419,9431) + PowerShellIdentifierImplGen(IDENTIFIER)(9419,9431) + PsiElement(GENERIC_ID_PART)('New-Variable')(9419,9431) + PsiWhiteSpace(' ')(9431,9432) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9432,9437) + PsiElement(CMD_PARAMETER)('-Name')(9432,9437) + PsiWhiteSpace(' ')(9437,9438) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9438,9445) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9438,9445) + PsiElement(SIMPLE_ID)('Count71')(9438,9445) + PsiWhiteSpace(' ')(9445,9446) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9446,9452) + PsiElement(CMD_PARAMETER)('-Value')(9446,9452) + PsiWhiteSpace(' ')(9452,9453) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9453,9456) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9453,9456) + PsiElement(DEC_INTEGER)('150')(9453,9456) + PsiWhiteSpace(' ')(9456,9457) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9457,9464) + PsiElement(CMD_PARAMETER)('-Option')(9457,9464) + PsiWhiteSpace(' ')(9464,9465) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9465,9472) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9465,9472) + PsiElement(SIMPLE_ID)('Private')(9465,9472) + PsiElement(NLS)('\n')(9472,9473) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9473,9527) + PowerShellCommandNameImplGen(COMMAND_NAME)(9473,9485) + PowerShellIdentifierImplGen(IDENTIFIER)(9473,9485) + PsiElement(GENERIC_ID_PART)('New-Variable')(9473,9485) + PsiWhiteSpace(' ')(9485,9486) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9486,9491) + PsiElement(CMD_PARAMETER)('-Name')(9486,9491) + PsiWhiteSpace(' ')(9491,9492) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9492,9499) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9492,9499) + PsiElement(SIMPLE_ID)('Count72')(9492,9499) + PsiWhiteSpace(' ')(9499,9500) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9500,9506) + PsiElement(CMD_PARAMETER)('-Value')(9500,9506) + PsiWhiteSpace(' ')(9506,9507) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9507,9510) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9507,9510) + PsiElement(DEC_INTEGER)('150')(9507,9510) + PsiWhiteSpace(' ')(9510,9511) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9511,9518) + PsiElement(CMD_PARAMETER)('-Option')(9511,9518) + PsiWhiteSpace(' ')(9518,9519) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9519,9527) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9519,9527) + PsiElement(SIMPLE_ID)('AllScope')(9519,9527) + PsiElement(NLS)('\n')(9527,9528) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9528,9574) + PowerShellCommandNameImplGen(COMMAND_NAME)(9528,9540) + PowerShellIdentifierImplGen(IDENTIFIER)(9528,9540) + PsiElement(GENERIC_ID_PART)('New-Variable')(9528,9540) PsiWhiteSpace(' ')(9540,9541) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9541,9549) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9541,9549) - PsiElement(SIMPLE_ID)('AllScope')(9541,9549) - PsiElement(NLS)('\n')(9549,9550) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9550,9596) - PowerShellCommandNameImplGen(COMMAND_NAME)(9550,9562) - PowerShellIdentifierImplGen(IDENTIFIER)(9550,9562) - PsiElement(GENERIC_ID_PART)('New-Variable')(9550,9562) - PsiWhiteSpace(' ')(9562,9563) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9563,9568) - PsiElement(CMD_PARAMETER)('-Name')(9563,9568) - PsiWhiteSpace(' ')(9568,9569) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9569,9576) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9569,9576) - PsiElement(SIMPLE_ID)('Count80')(9569,9576) - PsiWhiteSpace(' ')(9576,9577) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9577,9583) - PsiElement(CMD_PARAMETER)('-Value')(9577,9583) - PsiWhiteSpace(' ')(9583,9584) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9584,9587) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9584,9587) - PsiElement(DEC_INTEGER)('150')(9584,9587) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9541,9546) + PsiElement(CMD_PARAMETER)('-Name')(9541,9546) + PsiWhiteSpace(' ')(9546,9547) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9547,9554) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9547,9554) + PsiElement(SIMPLE_ID)('Count80')(9547,9554) + PsiWhiteSpace(' ')(9554,9555) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9555,9561) + PsiElement(CMD_PARAMETER)('-Value')(9555,9561) + PsiWhiteSpace(' ')(9561,9562) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9562,9565) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9562,9565) + PsiElement(DEC_INTEGER)('150')(9562,9565) + PsiWhiteSpace(' ')(9565,9566) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9566,9574) + PsiElement(CMD_PARAMETER)('-Confirm')(9566,9574) + PsiElement(NLS)('\n')(9574,9575) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9575,9620) + PowerShellCommandNameImplGen(COMMAND_NAME)(9575,9587) + PowerShellIdentifierImplGen(IDENTIFIER)(9575,9587) + PsiElement(GENERIC_ID_PART)('New-Variable')(9575,9587) PsiWhiteSpace(' ')(9587,9588) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9588,9596) - PsiElement(CMD_PARAMETER)('-Confirm')(9588,9596) - PsiElement(NLS)('\n')(9596,9597) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9597,9642) - PowerShellCommandNameImplGen(COMMAND_NAME)(9597,9609) - PowerShellIdentifierImplGen(IDENTIFIER)(9597,9609) - PsiElement(GENERIC_ID_PART)('New-Variable')(9597,9609) - PsiWhiteSpace(' ')(9609,9610) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9610,9615) - PsiElement(CMD_PARAMETER)('-Name')(9610,9615) - PsiWhiteSpace(' ')(9615,9616) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9616,9623) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9616,9623) - PsiElement(SIMPLE_ID)('Count90')(9616,9623) - PsiWhiteSpace(' ')(9623,9624) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9624,9630) - PsiElement(CMD_PARAMETER)('-Value')(9624,9630) - PsiWhiteSpace(' ')(9630,9631) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9631,9634) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9631,9634) - PsiElement(DEC_INTEGER)('150')(9631,9634) - PsiWhiteSpace(' ')(9634,9635) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9635,9642) - PsiElement(CMD_PARAMETER)('-WhatIf')(9635,9642) - PsiElement(NLS)('\n\n')(9642,9644) - PsiComment(COMMENT)('#Sets the current working location (§4.5.5) to that on the top of the specified working location stack.')(9644,9747) - PsiElement(NLS)('\n')(9747,9748) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9748,9760) - PowerShellCommandNameImplGen(COMMAND_NAME)(9748,9760) - PowerShellIdentifierImplGen(IDENTIFIER)(9748,9760) - PsiElement(GENERIC_ID_PART)('Pop-Location')(9748,9760) - PsiElement(NLS)('\n')(9760,9761) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9761,9808) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9761,9763) - PsiElement($)('$')(9761,9762) - PowerShellIdentifierImplGen(IDENTIFIER)(9762,9763) - PsiElement(SIMPLE_ID)('v')(9762,9763) - PsiWhiteSpace(' ')(9763,9764) - PsiElement(=)('=')(9764,9765) - PsiWhiteSpace(' ')(9765,9766) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9766,9808) - PowerShellCommandNameImplGen(COMMAND_NAME)(9766,9778) - PowerShellIdentifierImplGen(IDENTIFIER)(9766,9778) - PsiElement(GENERIC_ID_PART)('Pop-Location')(9766,9778) - PsiWhiteSpace(' ')(9778,9779) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9779,9789) - PsiElement(CMD_PARAMETER)('-StackName')(9779,9789) - PsiWhiteSpace(' ')(9789,9790) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9790,9798) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9790,9798) - PsiElement(DQ_OPEN)('"')(9790,9791) - PsiElement(EXPANDABLE_STRING_PART)('Stack3')(9791,9797) - PsiElement(DQ_CLOSE)('"')(9797,9798) - PsiWhiteSpace(' ')(9798,9799) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9799,9808) - PsiElement(CMD_PARAMETER)('-PassThru')(9799,9808) - PsiElement(NLS)('\n\n')(9808,9810) - PsiComment(COMMENT)('#Adds the current or a specified working location to the top of a given working location stack.')(9810,9905) - PsiElement(NLS)('\n')(9905,9906) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9906,9934) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9906,9908) - PsiElement($)('$')(9906,9907) - PowerShellIdentifierImplGen(IDENTIFIER)(9907,9908) - PsiElement(SIMPLE_ID)('v')(9907,9908) - PsiWhiteSpace(' ')(9908,9909) - PsiElement(=)('=')(9909,9910) - PsiWhiteSpace(' ')(9910,9911) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9911,9934) - PowerShellCommandNameImplGen(COMMAND_NAME)(9911,9924) - PowerShellIdentifierImplGen(IDENTIFIER)(9911,9924) - PsiElement(GENERIC_ID_PART)('Push-Location')(9911,9924) - PsiWhiteSpace(' ')(9924,9925) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9925,9934) - PsiElement(CMD_PARAMETER)('-PassThru')(9925,9934) - PsiElement(NLS)('\n')(9934,9935) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9935,9984) - PowerShellCommandNameImplGen(COMMAND_NAME)(9935,9948) - PowerShellIdentifierImplGen(IDENTIFIER)(9935,9948) - PsiElement(GENERIC_ID_PART)('Push-Location')(9935,9948) - PsiWhiteSpace(' ')(9948,9949) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9949,9954) - PsiElement(CMD_PARAMETER)('-Path')(9949,9954) - PsiWhiteSpace(' ')(9954,9955) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9955,9964) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9955,9964) - PsiElement(DQ_OPEN)('"')(9955,9956) - PsiElement(EXPANDABLE_STRING_PART)('E:\temp')(9956,9963) - PsiElement(DQ_CLOSE)('"')(9963,9964) - PsiWhiteSpace(' ')(9964,9965) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9965,9975) - PsiElement(CMD_PARAMETER)('-StackName')(9965,9975) - PsiWhiteSpace(' ')(9975,9976) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9976,9984) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9976,9984) - PsiElement(DQ_OPEN)('"')(9976,9977) - PsiElement(EXPANDABLE_STRING_PART)('Stack3')(9977,9983) - PsiElement(DQ_CLOSE)('"')(9983,9984) - PsiElement(NLS)('\n\n')(9984,9986) - PsiComment(COMMENT)('#Deletes one or more items (§3.3).')(9986,10020) - PsiElement(NLS)('\n')(10020,10021) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10021,10053) - PowerShellCommandNameImplGen(COMMAND_NAME)(10021,10032) - PowerShellIdentifierImplGen(IDENTIFIER)(10021,10032) - PsiElement(GENERIC_ID_PART)('Remove-Item')(10021,10032) - PsiWhiteSpace(' ')(10032,10033) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10033,10044) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10033,10044) - PowerShellPathItemImplGen(PATH_ITEM)(10033,10034) - PsiElement(SIMPLE_ID)('C')(10033,10034) - PsiElement(:)(':')(10034,10035) - PsiElement(\)('\')(10035,10036) - PowerShellPathItemImplGen(PATH_ITEM)(10036,10040) - PsiElement(SIMPLE_ID)('Test')(10036,10040) - PsiElement(\)('\')(10040,10041) - PowerShellPathItemImplGen(PATH_ITEM)(10041,10044) - PsiElement(*)('*')(10041,10042) - PsiElement(.)('.')(10042,10043) - PsiElement(*)('*')(10043,10044) - PsiWhiteSpace(' ')(10044,10045) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10045,10053) - PsiElement(CMD_PARAMETER)('-Recurse')(10045,10053) - PsiElement(NLS)('\n')(10053,10054) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10054,10095) - PowerShellCommandNameImplGen(COMMAND_NAME)(10054,10065) - PowerShellIdentifierImplGen(IDENTIFIER)(10054,10065) - PsiElement(GENERIC_ID_PART)('Remove-Item')(10054,10065) - PsiWhiteSpace(' ')(10065,10066) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10066,10067) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10066,10067) - PsiElement(*)('*')(10066,10067) - PsiWhiteSpace(' ')(10067,10068) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10068,10076) - PsiElement(CMD_PARAMETER)('-Include')(10068,10076) - PsiWhiteSpace(' ')(10076,10077) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10077,10082) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10077,10082) - PsiElement(*)('*')(10077,10078) - PsiElement(.)('.')(10078,10079) - PsiElement(SIMPLE_ID)('doc')(10079,10082) - PsiWhiteSpace(' ')(10082,10083) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10083,10091) - PsiElement(CMD_PARAMETER)('-Exclude')(10083,10091) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9588,9593) + PsiElement(CMD_PARAMETER)('-Name')(9588,9593) + PsiWhiteSpace(' ')(9593,9594) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9594,9601) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(9594,9601) + PsiElement(SIMPLE_ID)('Count90')(9594,9601) + PsiWhiteSpace(' ')(9601,9602) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9602,9608) + PsiElement(CMD_PARAMETER)('-Value')(9602,9608) + PsiWhiteSpace(' ')(9608,9609) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9609,9612) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(9609,9612) + PsiElement(DEC_INTEGER)('150')(9609,9612) + PsiWhiteSpace(' ')(9612,9613) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9613,9620) + PsiElement(CMD_PARAMETER)('-WhatIf')(9613,9620) + PsiElement(NLS)('\n\n')(9620,9622) + PsiComment(COMMENT)('#Sets the current working location (§4.5.5) to that on the top of the specified working location stack.')(9622,9725) + PsiElement(NLS)('\n')(9725,9726) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9726,9738) + PowerShellCommandNameImplGen(COMMAND_NAME)(9726,9738) + PowerShellIdentifierImplGen(IDENTIFIER)(9726,9738) + PsiElement(GENERIC_ID_PART)('Pop-Location')(9726,9738) + PsiElement(NLS)('\n')(9738,9739) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9739,9786) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9739,9741) + PsiElement($)('$')(9739,9740) + PowerShellIdentifierImplGen(IDENTIFIER)(9740,9741) + PsiElement(SIMPLE_ID)('v')(9740,9741) + PsiWhiteSpace(' ')(9741,9742) + PsiElement(=)('=')(9742,9743) + PsiWhiteSpace(' ')(9743,9744) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9744,9786) + PowerShellCommandNameImplGen(COMMAND_NAME)(9744,9756) + PowerShellIdentifierImplGen(IDENTIFIER)(9744,9756) + PsiElement(GENERIC_ID_PART)('Pop-Location')(9744,9756) + PsiWhiteSpace(' ')(9756,9757) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9757,9767) + PsiElement(CMD_PARAMETER)('-StackName')(9757,9767) + PsiWhiteSpace(' ')(9767,9768) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9768,9776) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9768,9776) + PsiElement(DQ_OPEN)('"')(9768,9769) + PsiElement(EXPANDABLE_STRING_PART)('Stack3')(9769,9775) + PsiElement(DQ_CLOSE)('"')(9775,9776) + PsiWhiteSpace(' ')(9776,9777) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9777,9786) + PsiElement(CMD_PARAMETER)('-PassThru')(9777,9786) + PsiElement(NLS)('\n\n')(9786,9788) + PsiComment(COMMENT)('#Adds the current or a specified working location to the top of a given working location stack.')(9788,9883) + PsiElement(NLS)('\n')(9883,9884) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(9884,9912) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(9884,9886) + PsiElement($)('$')(9884,9885) + PowerShellIdentifierImplGen(IDENTIFIER)(9885,9886) + PsiElement(SIMPLE_ID)('v')(9885,9886) + PsiWhiteSpace(' ')(9886,9887) + PsiElement(=)('=')(9887,9888) + PsiWhiteSpace(' ')(9888,9889) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9889,9912) + PowerShellCommandNameImplGen(COMMAND_NAME)(9889,9902) + PowerShellIdentifierImplGen(IDENTIFIER)(9889,9902) + PsiElement(GENERIC_ID_PART)('Push-Location')(9889,9902) + PsiWhiteSpace(' ')(9902,9903) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9903,9912) + PsiElement(CMD_PARAMETER)('-PassThru')(9903,9912) + PsiElement(NLS)('\n')(9912,9913) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9913,9962) + PowerShellCommandNameImplGen(COMMAND_NAME)(9913,9926) + PowerShellIdentifierImplGen(IDENTIFIER)(9913,9926) + PsiElement(GENERIC_ID_PART)('Push-Location')(9913,9926) + PsiWhiteSpace(' ')(9926,9927) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9927,9932) + PsiElement(CMD_PARAMETER)('-Path')(9927,9932) + PsiWhiteSpace(' ')(9932,9933) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9933,9942) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9933,9942) + PsiElement(DQ_OPEN)('"')(9933,9934) + PsiElement(EXPANDABLE_STRING_PART)('E:\temp')(9934,9941) + PsiElement(DQ_CLOSE)('"')(9941,9942) + PsiWhiteSpace(' ')(9942,9943) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(9943,9953) + PsiElement(CMD_PARAMETER)('-StackName')(9943,9953) + PsiWhiteSpace(' ')(9953,9954) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(9954,9962) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(9954,9962) + PsiElement(DQ_OPEN)('"')(9954,9955) + PsiElement(EXPANDABLE_STRING_PART)('Stack3')(9955,9961) + PsiElement(DQ_CLOSE)('"')(9961,9962) + PsiElement(NLS)('\n\n')(9962,9964) + PsiComment(COMMENT)('#Deletes one or more items (§3.3).')(9964,9998) + PsiElement(NLS)('\n')(9998,9999) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(9999,10031) + PowerShellCommandNameImplGen(COMMAND_NAME)(9999,10010) + PowerShellIdentifierImplGen(IDENTIFIER)(9999,10010) + PsiElement(GENERIC_ID_PART)('Remove-Item')(9999,10010) + PsiWhiteSpace(' ')(10010,10011) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10011,10022) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10011,10022) + PowerShellPathItemImplGen(PATH_ITEM)(10011,10012) + PsiElement(SIMPLE_ID)('C')(10011,10012) + PsiElement(:)(':')(10012,10013) + PsiElement(\)('\')(10013,10014) + PowerShellPathItemImplGen(PATH_ITEM)(10014,10018) + PsiElement(SIMPLE_ID)('Test')(10014,10018) + PsiElement(\)('\')(10018,10019) + PowerShellPathItemImplGen(PATH_ITEM)(10019,10022) + PsiElement(*)('*')(10019,10020) + PsiElement(.)('.')(10020,10021) + PsiElement(*)('*')(10021,10022) + PsiWhiteSpace(' ')(10022,10023) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10023,10031) + PsiElement(CMD_PARAMETER)('-Recurse')(10023,10031) + PsiElement(NLS)('\n')(10031,10032) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10032,10073) + PowerShellCommandNameImplGen(COMMAND_NAME)(10032,10043) + PowerShellIdentifierImplGen(IDENTIFIER)(10032,10043) + PsiElement(GENERIC_ID_PART)('Remove-Item')(10032,10043) + PsiWhiteSpace(' ')(10043,10044) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10044,10045) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10044,10045) + PsiElement(*)('*')(10044,10045) + PsiWhiteSpace(' ')(10045,10046) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10046,10054) + PsiElement(CMD_PARAMETER)('-Include')(10046,10054) + PsiWhiteSpace(' ')(10054,10055) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10055,10060) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10055,10060) + PsiElement(*)('*')(10055,10056) + PsiElement(.)('.')(10056,10057) + PsiElement(SIMPLE_ID)('doc')(10057,10060) + PsiWhiteSpace(' ')(10060,10061) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10061,10069) + PsiElement(CMD_PARAMETER)('-Exclude')(10061,10069) + PsiWhiteSpace(' ')(10069,10070) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10070,10073) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10070,10073) + PsiElement(*)('*')(10070,10071) + PsiElement(DEC_INTEGER)('1')(10071,10072) + PsiElement(*)('*')(10072,10073) + PsiElement(NLS)('\n')(10073,10074) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10074,10125) + PowerShellCommandNameImplGen(COMMAND_NAME)(10074,10085) + PowerShellIdentifierImplGen(IDENTIFIER)(10074,10085) + PsiElement(GENERIC_ID_PART)('Remove-Item')(10074,10085) + PsiWhiteSpace(' ')(10085,10086) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10086,10091) + PsiElement(CMD_PARAMETER)('-Path')(10086,10091) PsiWhiteSpace(' ')(10091,10092) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10092,10095) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10092,10095) - PsiElement(*)('*')(10092,10093) - PsiElement(DEC_INTEGER)('1')(10093,10094) - PsiElement(*)('*')(10094,10095) - PsiElement(NLS)('\n')(10095,10096) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10096,10147) - PowerShellCommandNameImplGen(COMMAND_NAME)(10096,10107) - PowerShellIdentifierImplGen(IDENTIFIER)(10096,10107) - PsiElement(GENERIC_ID_PART)('Remove-Item')(10096,10107) - PsiWhiteSpace(' ')(10107,10108) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10108,10113) - PsiElement(CMD_PARAMETER)('-Path')(10108,10113) - PsiWhiteSpace(' ')(10113,10114) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10114,10140) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10114,10140) - PowerShellPathItemImplGen(PATH_ITEM)(10114,10115) - PsiElement(SIMPLE_ID)('C')(10114,10115) - PsiElement(:)(':')(10115,10116) - PsiElement(\)('\')(10116,10117) - PowerShellPathItemImplGen(PATH_ITEM)(10117,10121) - PsiElement(SIMPLE_ID)('Test')(10117,10121) - PsiElement(\)('\')(10121,10122) - PowerShellPathItemImplGen(PATH_ITEM)(10122,10140) - PsiElement(GENERIC_ID_PART)('hidden-RO')(10122,10131) - PsiElement(CMD_PARAMETER)('-file')(10131,10136) - PsiElement(.)('.')(10136,10137) - PsiElement(SIMPLE_ID)('txt')(10137,10140) - PsiWhiteSpace(' ')(10140,10141) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10141,10147) - PsiElement(CMD_PARAMETER)('-force')(10141,10147) - PsiElement(NLS)('\n\n')(10147,10149) - PsiComment(COMMENT)('#Removes one or more modules (§3.14) from the current session.')(10149,10211) - PsiElement(NLS)('\n')(10211,10212) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10212,10244) - PowerShellCommandNameImplGen(COMMAND_NAME)(10212,10225) - PowerShellIdentifierImplGen(IDENTIFIER)(10212,10225) - PsiElement(GENERIC_ID_PART)('Remove-Module')(10212,10225) - PsiWhiteSpace(' ')(10225,10226) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10226,10244) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10226,10244) - PsiElement(SIMPLE_ID)('PSTest_Temperature')(10226,10244) - PsiElement(NLS)('\n')(10244,10245) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10245,10268) - PowerShellCommandNameImplGen(COMMAND_NAME)(10245,10258) - PowerShellIdentifierImplGen(IDENTIFIER)(10245,10258) - PsiElement(GENERIC_ID_PART)('Remove-Module')(10245,10258) - PsiWhiteSpace(' ')(10258,10259) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10259,10263) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10259,10263) - PsiElement(SIMPLE_ID)('Lib1')(10259,10263) - PsiElement(,)(',')(10263,10264) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10264,10268) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10264,10268) - PsiElement(SIMPLE_ID)('Lib2')(10264,10268) - PsiElement(NLS)('\n\n')(10268,10270) - PsiComment(COMMENT)('#Deletes one or more variables.')(10270,10301) - PsiElement(NLS)('\n')(10301,10302) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10302,10359) - PowerShellCommandNameImplGen(COMMAND_NAME)(10302,10317) - PowerShellIdentifierImplGen(IDENTIFIER)(10302,10317) - PsiElement(GENERIC_ID_PART)('Remove-Variable')(10302,10317) - PsiWhiteSpace(' ')(10317,10318) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10318,10328) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10318,10328) - PsiElement(VERBATIM_STRING)(''Count10?'')(10318,10328) - PsiWhiteSpace(' ')(10328,10329) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10329,10337) - PsiElement(CMD_PARAMETER)('-Exclude')(10329,10337) - PsiWhiteSpace(' ')(10337,10338) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10338,10348) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10338,10348) - PsiElement(VERBATIM_STRING)(''Count101'')(10338,10348) - PsiElement(,)(',')(10348,10349) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10349,10359) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10349,10359) - PsiElement(VERBATIM_STRING)(''Count102'')(10349,10359) - PsiElement(NLS)('\n\n')(10359,10361) - PsiComment(COMMENT)('#Renames an item (§3.3).')(10361,10385) - PsiElement(NLS)('\n')(10385,10386) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10386,10425) - PowerShellCommandNameImplGen(COMMAND_NAME)(10386,10397) - PowerShellIdentifierImplGen(IDENTIFIER)(10386,10397) - PsiElement(GENERIC_ID_PART)('Rename-Item')(10386,10397) - PsiWhiteSpace(' ')(10397,10398) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10398,10415) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10398,10415) - PowerShellPathItemImplGen(PATH_ITEM)(10398,10399) - PsiElement(SIMPLE_ID)('J')(10398,10399) - PsiElement(:)(':')(10399,10400) - PsiElement(\)('\')(10400,10401) - PowerShellPathItemImplGen(PATH_ITEM)(10401,10405) - PsiElement(SIMPLE_ID)('Test')(10401,10405) - PsiElement(\)('\')(10405,10406) - PowerShellPathItemImplGen(PATH_ITEM)(10406,10415) - PsiElement(SIMPLE_ID)('File1')(10406,10411) - PsiElement(.)('.')(10411,10412) - PsiElement(SIMPLE_ID)('txt')(10412,10415) - PsiWhiteSpace(' ')(10415,10416) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10416,10425) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10416,10425) - PsiElement(SIMPLE_ID)('File1')(10416,10421) - PsiElement(.)('.')(10421,10422) - PsiElement(SIMPLE_ID)('tmp')(10422,10425) - PsiElement(NLS)('\n\n')(10425,10427) - PsiComment(COMMENT)('#Resolves the wildcard characters in one or more paths (§3.4), and outputs the path(s) contents.')(10427,10523) - PsiElement(NLS)('\n')(10523,10524) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10524,10569) - PowerShellCommandNameImplGen(COMMAND_NAME)(10524,10536) - PowerShellIdentifierImplGen(IDENTIFIER)(10524,10536) - PsiElement(GENERIC_ID_PART)('Resolve-Path')(10524,10536) - PsiWhiteSpace(' ')(10536,10537) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10537,10542) - PsiElement(CMD_PARAMETER)('-Path')(10537,10542) - PsiWhiteSpace(' ')(10542,10543) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10543,10553) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10543,10553) - PowerShellPathItemImplGen(PATH_ITEM)(10543,10544) - PsiElement(SIMPLE_ID)('E')(10543,10544) - PsiElement(:)(':')(10544,10545) - PsiElement(\)('\')(10545,10546) - PowerShellPathItemImplGen(PATH_ITEM)(10546,10550) - PsiElement(SIMPLE_ID)('Temp')(10546,10550) - PsiElement(\)('\')(10550,10551) - PowerShellPathItemImplGen(PATH_ITEM)(10551,10553) - PsiElement(SIMPLE_ID)('W')(10551,10552) - PsiElement(*)('*')(10552,10553) - PsiElement(,)(',')(10553,10554) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10554,10569) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10554,10569) - PowerShellPathItemImplGen(PATH_ITEM)(10554,10555) - PsiElement(SIMPLE_ID)('E')(10554,10555) - PsiElement(:)(':')(10555,10556) - PsiElement(\)('\')(10556,10557) - PowerShellPathItemImplGen(PATH_ITEM)(10557,10561) - PsiElement(SIMPLE_ID)('Temp')(10557,10561) - PsiElement(\)('\')(10561,10562) - PowerShellPathItemImplGen(PATH_ITEM)(10562,10569) - PsiElement(SIMPLE_ID)('Action')(10562,10568) - PsiElement(*)('*')(10568,10569) - PsiElement(NLS)('\n')(10569,10570) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10570,10614) - PowerShellCommandNameImplGen(COMMAND_NAME)(10570,10582) - PowerShellIdentifierImplGen(IDENTIFIER)(10570,10582) - PsiElement(GENERIC_ID_PART)('Resolve-Path')(10570,10582) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10092,10118) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10092,10118) + PowerShellPathItemImplGen(PATH_ITEM)(10092,10093) + PsiElement(SIMPLE_ID)('C')(10092,10093) + PsiElement(:)(':')(10093,10094) + PsiElement(\)('\')(10094,10095) + PowerShellPathItemImplGen(PATH_ITEM)(10095,10099) + PsiElement(SIMPLE_ID)('Test')(10095,10099) + PsiElement(\)('\')(10099,10100) + PowerShellPathItemImplGen(PATH_ITEM)(10100,10118) + PsiElement(GENERIC_ID_PART)('hidden-RO')(10100,10109) + PsiElement(CMD_PARAMETER)('-file')(10109,10114) + PsiElement(.)('.')(10114,10115) + PsiElement(SIMPLE_ID)('txt')(10115,10118) + PsiWhiteSpace(' ')(10118,10119) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10119,10125) + PsiElement(CMD_PARAMETER)('-force')(10119,10125) + PsiElement(NLS)('\n\n')(10125,10127) + PsiComment(COMMENT)('#Removes one or more modules (§3.14) from the current session.')(10127,10189) + PsiElement(NLS)('\n')(10189,10190) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10190,10222) + PowerShellCommandNameImplGen(COMMAND_NAME)(10190,10203) + PowerShellIdentifierImplGen(IDENTIFIER)(10190,10203) + PsiElement(GENERIC_ID_PART)('Remove-Module')(10190,10203) + PsiWhiteSpace(' ')(10203,10204) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10204,10222) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10204,10222) + PsiElement(SIMPLE_ID)('PSTest_Temperature')(10204,10222) + PsiElement(NLS)('\n')(10222,10223) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10223,10246) + PowerShellCommandNameImplGen(COMMAND_NAME)(10223,10236) + PowerShellIdentifierImplGen(IDENTIFIER)(10223,10236) + PsiElement(GENERIC_ID_PART)('Remove-Module')(10223,10236) + PsiWhiteSpace(' ')(10236,10237) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10237,10241) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10237,10241) + PsiElement(SIMPLE_ID)('Lib1')(10237,10241) + PsiElement(,)(',')(10241,10242) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10242,10246) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10242,10246) + PsiElement(SIMPLE_ID)('Lib2')(10242,10246) + PsiElement(NLS)('\n\n')(10246,10248) + PsiComment(COMMENT)('#Deletes one or more variables.')(10248,10279) + PsiElement(NLS)('\n')(10279,10280) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10280,10337) + PowerShellCommandNameImplGen(COMMAND_NAME)(10280,10295) + PowerShellIdentifierImplGen(IDENTIFIER)(10280,10295) + PsiElement(GENERIC_ID_PART)('Remove-Variable')(10280,10295) + PsiWhiteSpace(' ')(10295,10296) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10296,10306) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10296,10306) + PsiElement(VERBATIM_STRING)(''Count10?'')(10296,10306) + PsiWhiteSpace(' ')(10306,10307) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10307,10315) + PsiElement(CMD_PARAMETER)('-Exclude')(10307,10315) + PsiWhiteSpace(' ')(10315,10316) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10316,10326) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10316,10326) + PsiElement(VERBATIM_STRING)(''Count101'')(10316,10326) + PsiElement(,)(',')(10326,10327) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10327,10337) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10327,10337) + PsiElement(VERBATIM_STRING)(''Count102'')(10327,10337) + PsiElement(NLS)('\n\n')(10337,10339) + PsiComment(COMMENT)('#Renames an item (§3.3).')(10339,10363) + PsiElement(NLS)('\n')(10363,10364) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10364,10403) + PowerShellCommandNameImplGen(COMMAND_NAME)(10364,10375) + PowerShellIdentifierImplGen(IDENTIFIER)(10364,10375) + PsiElement(GENERIC_ID_PART)('Rename-Item')(10364,10375) + PsiWhiteSpace(' ')(10375,10376) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10376,10393) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10376,10393) + PowerShellPathItemImplGen(PATH_ITEM)(10376,10377) + PsiElement(SIMPLE_ID)('J')(10376,10377) + PsiElement(:)(':')(10377,10378) + PsiElement(\)('\')(10378,10379) + PowerShellPathItemImplGen(PATH_ITEM)(10379,10383) + PsiElement(SIMPLE_ID)('Test')(10379,10383) + PsiElement(\)('\')(10383,10384) + PowerShellPathItemImplGen(PATH_ITEM)(10384,10393) + PsiElement(SIMPLE_ID)('File1')(10384,10389) + PsiElement(.)('.')(10389,10390) + PsiElement(SIMPLE_ID)('txt')(10390,10393) + PsiWhiteSpace(' ')(10393,10394) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10394,10403) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10394,10403) + PsiElement(SIMPLE_ID)('File1')(10394,10399) + PsiElement(.)('.')(10399,10400) + PsiElement(SIMPLE_ID)('tmp')(10400,10403) + PsiElement(NLS)('\n\n')(10403,10405) + PsiComment(COMMENT)('#Resolves the wildcard characters in one or more paths (§3.4), and outputs the path(s) contents.')(10405,10501) + PsiElement(NLS)('\n')(10501,10502) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10502,10547) + PowerShellCommandNameImplGen(COMMAND_NAME)(10502,10514) + PowerShellIdentifierImplGen(IDENTIFIER)(10502,10514) + PsiElement(GENERIC_ID_PART)('Resolve-Path')(10502,10514) + PsiWhiteSpace(' ')(10514,10515) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10515,10520) + PsiElement(CMD_PARAMETER)('-Path')(10515,10520) + PsiWhiteSpace(' ')(10520,10521) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10521,10531) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10521,10531) + PowerShellPathItemImplGen(PATH_ITEM)(10521,10522) + PsiElement(SIMPLE_ID)('E')(10521,10522) + PsiElement(:)(':')(10522,10523) + PsiElement(\)('\')(10523,10524) + PowerShellPathItemImplGen(PATH_ITEM)(10524,10528) + PsiElement(SIMPLE_ID)('Temp')(10524,10528) + PsiElement(\)('\')(10528,10529) + PowerShellPathItemImplGen(PATH_ITEM)(10529,10531) + PsiElement(SIMPLE_ID)('W')(10529,10530) + PsiElement(*)('*')(10530,10531) + PsiElement(,)(',')(10531,10532) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10532,10547) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10532,10547) + PowerShellPathItemImplGen(PATH_ITEM)(10532,10533) + PsiElement(SIMPLE_ID)('E')(10532,10533) + PsiElement(:)(':')(10533,10534) + PsiElement(\)('\')(10534,10535) + PowerShellPathItemImplGen(PATH_ITEM)(10535,10539) + PsiElement(SIMPLE_ID)('Temp')(10535,10539) + PsiElement(\)('\')(10539,10540) + PowerShellPathItemImplGen(PATH_ITEM)(10540,10547) + PsiElement(SIMPLE_ID)('Action')(10540,10546) + PsiElement(*)('*')(10546,10547) + PsiElement(NLS)('\n')(10547,10548) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10548,10592) + PowerShellCommandNameImplGen(COMMAND_NAME)(10548,10560) + PowerShellIdentifierImplGen(IDENTIFIER)(10548,10560) + PsiElement(GENERIC_ID_PART)('Resolve-Path')(10548,10560) + PsiWhiteSpace(' ')(10560,10561) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10561,10566) + PsiElement(CMD_PARAMETER)('-Path')(10561,10566) + PsiWhiteSpace(' ')(10566,10567) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10567,10582) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10567,10582) + PowerShellPathItemImplGen(PATH_ITEM)(10567,10568) + PsiElement(SIMPLE_ID)('E')(10567,10568) + PsiElement(:)(':')(10568,10569) + PsiElement(\)('\')(10569,10570) + PowerShellPathItemImplGen(PATH_ITEM)(10570,10574) + PsiElement(SIMPLE_ID)('Temp')(10570,10574) + PsiElement(\)('\')(10574,10575) + PowerShellPathItemImplGen(PATH_ITEM)(10575,10582) + PsiElement(SIMPLE_ID)('Action')(10575,10581) + PsiElement(*)('*')(10581,10582) PsiWhiteSpace(' ')(10582,10583) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10583,10588) - PsiElement(CMD_PARAMETER)('-Path')(10583,10588) - PsiWhiteSpace(' ')(10588,10589) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10589,10604) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(10589,10604) - PowerShellPathItemImplGen(PATH_ITEM)(10589,10590) - PsiElement(SIMPLE_ID)('E')(10589,10590) - PsiElement(:)(':')(10590,10591) - PsiElement(\)('\')(10591,10592) - PowerShellPathItemImplGen(PATH_ITEM)(10592,10596) - PsiElement(SIMPLE_ID)('Temp')(10592,10596) - PsiElement(\)('\')(10596,10597) - PowerShellPathItemImplGen(PATH_ITEM)(10597,10604) - PsiElement(SIMPLE_ID)('Action')(10597,10603) - PsiElement(*)('*')(10603,10604) - PsiWhiteSpace(' ')(10604,10605) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10605,10614) - PsiElement(CMD_PARAMETER)('-Relative')(10605,10614) - PsiElement(NLS)('\n\n')(10614,10616) - PsiComment(COMMENT)('#Selects specified properties of an object or set of objects. It can also select unique objects from an array of objects, or')(10616,10740) - PsiElement(NLS)('\n')(10740,10741) - PsiComment(COMMENT)('#it can select a specified number of objects from the beginning or end of an array of objects.')(10741,10835) - PsiElement(NLS)('\n')(10835,10836) - PowerShellPipelineTailImplGen(PIPELINE)(10836,10888) - PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(10836,10864) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10836,10839) - PsiElement(DQ_OPEN)('"')(10836,10837) - PsiElement(EXPANDABLE_STRING_PART)('b')(10837,10838) - PsiElement(DQ_CLOSE)('"')(10838,10839) - PsiElement(,)(',')(10839,10840) - PsiWhiteSpace(' ')(10840,10841) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10841,10844) - PsiElement(DQ_OPEN)('"')(10841,10842) - PsiElement(EXPANDABLE_STRING_PART)('a')(10842,10843) - PsiElement(DQ_CLOSE)('"')(10843,10844) - PsiElement(,)(',')(10844,10845) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10845,10848) - PsiElement(DQ_OPEN)('"')(10845,10846) - PsiElement(EXPANDABLE_STRING_PART)('b')(10846,10847) - PsiElement(DQ_CLOSE)('"')(10847,10848) - PsiElement(,)(',')(10848,10849) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10849,10852) - PsiElement(DQ_OPEN)('"')(10849,10850) - PsiElement(EXPANDABLE_STRING_PART)('a')(10850,10851) - PsiElement(DQ_CLOSE)('"')(10851,10852) - PsiElement(,)(',')(10852,10853) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10853,10856) - PsiElement(DQ_OPEN)('"')(10853,10854) - PsiElement(EXPANDABLE_STRING_PART)('a')(10854,10855) - PsiElement(DQ_CLOSE)('"')(10855,10856) - PsiElement(,)(',')(10856,10857) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10857,10860) - PsiElement(DQ_OPEN)('"')(10857,10858) - PsiElement(EXPANDABLE_STRING_PART)('c')(10858,10859) - PsiElement(DQ_CLOSE)('"')(10859,10860) - PsiElement(,)(',')(10860,10861) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10861,10864) - PsiElement(DQ_OPEN)('"')(10861,10862) - PsiElement(EXPANDABLE_STRING_PART)('a')(10862,10863) - PsiElement(DQ_CLOSE)('"')(10863,10864) - PsiWhiteSpace(' ')(10864,10865) - PsiElement(|)('|')(10865,10866) - PsiWhiteSpace(' ')(10866,10867) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10867,10888) - PowerShellCommandNameImplGen(COMMAND_NAME)(10867,10880) - PowerShellIdentifierImplGen(IDENTIFIER)(10867,10880) - PsiElement(GENERIC_ID_PART)('Select-Object')(10867,10880) - PsiWhiteSpace(' ')(10880,10881) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10881,10888) - PsiElement(CMD_PARAMETER)('-Unique')(10881,10888) - PsiElement(NLS)('\n')(10888,10889) - PowerShellPipelineTailImplGen(PIPELINE)(10889,10938) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10889,10897) - PowerShellCommandNameImplGen(COMMAND_NAME)(10889,10897) - PowerShellIdentifierImplGen(IDENTIFIER)(10889,10897) - PsiElement(GENERIC_ID_PART)('Get-Date')(10889,10897) - PsiWhiteSpace(' ')(10897,10898) - PsiElement(|)('|')(10898,10899) - PsiWhiteSpace(' ')(10899,10900) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10900,10938) - PowerShellCommandNameImplGen(COMMAND_NAME)(10900,10913) - PowerShellIdentifierImplGen(IDENTIFIER)(10900,10913) - PsiElement(GENERIC_ID_PART)('Select-Object')(10900,10913) - PsiWhiteSpace(' ')(10913,10914) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10914,10923) - PsiElement(CMD_PARAMETER)('-Property')(10914,10923) - PsiWhiteSpace(' ')(10923,10924) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10924,10928) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10924,10928) - PsiElement(SIMPLE_ID)('Year')(10924,10928) - PsiElement(,)(',')(10928,10929) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10929,10934) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10929,10934) - PsiElement(SIMPLE_ID)('Month')(10929,10934) - PsiElement(,)(',')(10934,10935) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10935,10938) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10935,10938) - PsiElement(SIMPLE_ID)('Day')(10935,10938) - PsiElement(NLS)('\n')(10938,10939) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(10939,10967) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10939,10945) - PsiElement($)('$')(10939,10940) - PowerShellIdentifierImplGen(IDENTIFIER)(10940,10945) - PsiElement(SIMPLE_ID)('dates')(10940,10945) - PsiWhiteSpace(' ')(10945,10946) - PsiElement(=)('=')(10946,10947) - PsiWhiteSpace(' ')(10947,10948) - PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(10948,10967) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10948,10951) - PsiElement($)('$')(10948,10949) - PowerShellIdentifierImplGen(IDENTIFIER)(10949,10951) - PsiElement(SIMPLE_ID)('d1')(10949,10951) - PsiElement(,)(',')(10951,10952) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10952,10955) - PsiElement($)('$')(10952,10953) - PowerShellIdentifierImplGen(IDENTIFIER)(10953,10955) - PsiElement(SIMPLE_ID)('d2')(10953,10955) - PsiElement(,)(',')(10955,10956) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10956,10959) - PsiElement($)('$')(10956,10957) - PowerShellIdentifierImplGen(IDENTIFIER)(10957,10959) - PsiElement(SIMPLE_ID)('d3')(10957,10959) - PsiElement(,)(',')(10959,10960) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10960,10963) - PsiElement($)('$')(10960,10961) - PowerShellIdentifierImplGen(IDENTIFIER)(10961,10963) - PsiElement(SIMPLE_ID)('d4')(10961,10963) - PsiElement(,)(',')(10963,10964) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10964,10967) - PsiElement($)('$')(10964,10965) - PowerShellIdentifierImplGen(IDENTIFIER)(10965,10967) - PsiElement(SIMPLE_ID)('d5')(10965,10967) - PsiWhiteSpace('\t\t')(10967,10969) - PsiComment(COMMENT)('# a collection of 5 date/time values')(10969,11005) - PsiElement(NLS)('\n')(11005,11006) - PowerShellPipelineTailImplGen(PIPELINE)(11006,11053) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(11006,11012) - PsiElement($)('$')(11006,11007) - PowerShellIdentifierImplGen(IDENTIFIER)(11007,11012) - PsiElement(SIMPLE_ID)('dates')(11007,11012) - PsiWhiteSpace(' ')(11012,11013) - PsiElement(|)('|')(11013,11014) - PsiWhiteSpace(' ')(11014,11015) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11015,11053) - PowerShellCommandNameImplGen(COMMAND_NAME)(11015,11028) - PowerShellIdentifierImplGen(IDENTIFIER)(11015,11028) - PsiElement(GENERIC_ID_PART)('Select-Object')(11015,11028) - PsiWhiteSpace(' ')(11028,11029) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11029,11038) - PsiElement(CMD_PARAMETER)('-Property')(11029,11038) - PsiWhiteSpace(' ')(11038,11039) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11039,11043) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11039,11043) - PsiElement(SIMPLE_ID)('Year')(11039,11043) - PsiElement(,)(',')(11043,11044) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11044,11049) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11044,11049) - PsiElement(SIMPLE_ID)('Month')(11044,11049) - PsiElement(,)(',')(11049,11050) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11050,11053) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11050,11053) - PsiElement(SIMPLE_ID)('Day')(11050,11053) - PsiElement(NLS)('\n')(11053,11054) - PowerShellPipelineTailImplGen(PIPELINE)(11054,11093) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(11054,11060) - PsiElement($)('$')(11054,11055) - PowerShellIdentifierImplGen(IDENTIFIER)(11055,11060) - PsiElement(SIMPLE_ID)('dates')(11055,11060) - PsiWhiteSpace(' ')(11060,11061) - PsiElement(|)('|')(11061,11062) - PsiWhiteSpace(' ')(11062,11063) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11063,11093) - PowerShellCommandNameImplGen(COMMAND_NAME)(11063,11076) - PowerShellIdentifierImplGen(IDENTIFIER)(11063,11076) - PsiElement(GENERIC_ID_PART)('Select-Object')(11063,11076) - PsiWhiteSpace(' ')(11076,11077) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11077,11083) - PsiElement(CMD_PARAMETER)('-First')(11077,11083) - PsiWhiteSpace(' ')(11083,11084) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11084,11085) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11084,11085) - PsiElement(DEC_INTEGER)('1')(11084,11085) - PsiWhiteSpace(' ')(11085,11086) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11086,11091) - PsiElement(CMD_PARAMETER)('-Last')(11086,11091) - PsiWhiteSpace(' ')(11091,11092) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11092,11093) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11092,11093) - PsiElement(DEC_INTEGER)('2')(11092,11093) - PsiElement(NLS)('\n\n')(11093,11095) - PsiComment(COMMENT)('#Sets one or more characteristics of one or more existing aliases. If the aliases do not exist, creates them with those characteristics.')(11095,11231) - PsiElement(NLS)('\n')(11231,11232) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11232,11254) - PowerShellCommandNameImplGen(COMMAND_NAME)(11232,11241) - PowerShellIdentifierImplGen(IDENTIFIER)(11232,11241) - PsiElement(GENERIC_ID_PART)('New-Alias')(11232,11241) - PsiWhiteSpace(' ')(11241,11242) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11242,11249) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11242,11249) - PsiElement(VERBATIM_STRING)(''Func1'')(11242,11249) - PsiWhiteSpace(' ')(11249,11250) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11250,11254) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11250,11254) - PsiElement(VERBATIM_STRING)(''F1'')(11250,11254) - PsiElement(NLS)('\n')(11254,11255) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11255,11294) - PowerShellCommandNameImplGen(COMMAND_NAME)(11255,11264) - PowerShellIdentifierImplGen(IDENTIFIER)(11255,11264) - PsiElement(GENERIC_ID_PART)('Set-Alias')(11255,11264) - PsiWhiteSpace(' ')(11264,11265) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11265,11272) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11265,11272) - PsiElement(VERBATIM_STRING)(''Func1'')(11265,11272) - PsiWhiteSpace(' ')(11272,11273) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11273,11277) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11273,11277) - PsiElement(VERBATIM_STRING)(''F1'')(11273,11277) - PsiWhiteSpace(' ')(11277,11278) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11278,11290) - PsiElement(CMD_PARAMETER)('-Description')(11278,11290) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10583,10592) + PsiElement(CMD_PARAMETER)('-Relative')(10583,10592) + PsiElement(NLS)('\n\n')(10592,10594) + PsiComment(COMMENT)('#Selects specified properties of an object or set of objects. It can also select unique objects from an array of objects, or')(10594,10718) + PsiElement(NLS)('\n')(10718,10719) + PsiComment(COMMENT)('#it can select a specified number of objects from the beginning or end of an array of objects.')(10719,10813) + PsiElement(NLS)('\n')(10813,10814) + PowerShellPipelineTailImplGen(PIPELINE)(10814,10866) + PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(10814,10842) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10814,10817) + PsiElement(DQ_OPEN)('"')(10814,10815) + PsiElement(EXPANDABLE_STRING_PART)('b')(10815,10816) + PsiElement(DQ_CLOSE)('"')(10816,10817) + PsiElement(,)(',')(10817,10818) + PsiWhiteSpace(' ')(10818,10819) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10819,10822) + PsiElement(DQ_OPEN)('"')(10819,10820) + PsiElement(EXPANDABLE_STRING_PART)('a')(10820,10821) + PsiElement(DQ_CLOSE)('"')(10821,10822) + PsiElement(,)(',')(10822,10823) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10823,10826) + PsiElement(DQ_OPEN)('"')(10823,10824) + PsiElement(EXPANDABLE_STRING_PART)('b')(10824,10825) + PsiElement(DQ_CLOSE)('"')(10825,10826) + PsiElement(,)(',')(10826,10827) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10827,10830) + PsiElement(DQ_OPEN)('"')(10827,10828) + PsiElement(EXPANDABLE_STRING_PART)('a')(10828,10829) + PsiElement(DQ_CLOSE)('"')(10829,10830) + PsiElement(,)(',')(10830,10831) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10831,10834) + PsiElement(DQ_OPEN)('"')(10831,10832) + PsiElement(EXPANDABLE_STRING_PART)('a')(10832,10833) + PsiElement(DQ_CLOSE)('"')(10833,10834) + PsiElement(,)(',')(10834,10835) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10835,10838) + PsiElement(DQ_OPEN)('"')(10835,10836) + PsiElement(EXPANDABLE_STRING_PART)('c')(10836,10837) + PsiElement(DQ_CLOSE)('"')(10837,10838) + PsiElement(,)(',')(10838,10839) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(10839,10842) + PsiElement(DQ_OPEN)('"')(10839,10840) + PsiElement(EXPANDABLE_STRING_PART)('a')(10840,10841) + PsiElement(DQ_CLOSE)('"')(10841,10842) + PsiWhiteSpace(' ')(10842,10843) + PsiElement(|)('|')(10843,10844) + PsiWhiteSpace(' ')(10844,10845) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10845,10866) + PowerShellCommandNameImplGen(COMMAND_NAME)(10845,10858) + PowerShellIdentifierImplGen(IDENTIFIER)(10845,10858) + PsiElement(GENERIC_ID_PART)('Select-Object')(10845,10858) + PsiWhiteSpace(' ')(10858,10859) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10859,10866) + PsiElement(CMD_PARAMETER)('-Unique')(10859,10866) + PsiElement(NLS)('\n')(10866,10867) + PowerShellPipelineTailImplGen(PIPELINE)(10867,10916) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10867,10875) + PowerShellCommandNameImplGen(COMMAND_NAME)(10867,10875) + PowerShellIdentifierImplGen(IDENTIFIER)(10867,10875) + PsiElement(GENERIC_ID_PART)('Get-Date')(10867,10875) + PsiWhiteSpace(' ')(10875,10876) + PsiElement(|)('|')(10876,10877) + PsiWhiteSpace(' ')(10877,10878) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10878,10916) + PowerShellCommandNameImplGen(COMMAND_NAME)(10878,10891) + PowerShellIdentifierImplGen(IDENTIFIER)(10878,10891) + PsiElement(GENERIC_ID_PART)('Select-Object')(10878,10891) + PsiWhiteSpace(' ')(10891,10892) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(10892,10901) + PsiElement(CMD_PARAMETER)('-Property')(10892,10901) + PsiWhiteSpace(' ')(10901,10902) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10902,10906) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10902,10906) + PsiElement(SIMPLE_ID)('Year')(10902,10906) + PsiElement(,)(',')(10906,10907) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10907,10912) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10907,10912) + PsiElement(SIMPLE_ID)('Month')(10907,10912) + PsiElement(,)(',')(10912,10913) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(10913,10916) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(10913,10916) + PsiElement(SIMPLE_ID)('Day')(10913,10916) + PsiElement(NLS)('\n')(10916,10917) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(10917,10945) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10917,10923) + PsiElement($)('$')(10917,10918) + PowerShellIdentifierImplGen(IDENTIFIER)(10918,10923) + PsiElement(SIMPLE_ID)('dates')(10918,10923) + PsiWhiteSpace(' ')(10923,10924) + PsiElement(=)('=')(10924,10925) + PsiWhiteSpace(' ')(10925,10926) + PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(10926,10945) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10926,10929) + PsiElement($)('$')(10926,10927) + PowerShellIdentifierImplGen(IDENTIFIER)(10927,10929) + PsiElement(SIMPLE_ID)('d1')(10927,10929) + PsiElement(,)(',')(10929,10930) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10930,10933) + PsiElement($)('$')(10930,10931) + PowerShellIdentifierImplGen(IDENTIFIER)(10931,10933) + PsiElement(SIMPLE_ID)('d2')(10931,10933) + PsiElement(,)(',')(10933,10934) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10934,10937) + PsiElement($)('$')(10934,10935) + PowerShellIdentifierImplGen(IDENTIFIER)(10935,10937) + PsiElement(SIMPLE_ID)('d3')(10935,10937) + PsiElement(,)(',')(10937,10938) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10938,10941) + PsiElement($)('$')(10938,10939) + PowerShellIdentifierImplGen(IDENTIFIER)(10939,10941) + PsiElement(SIMPLE_ID)('d4')(10939,10941) + PsiElement(,)(',')(10941,10942) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10942,10945) + PsiElement($)('$')(10942,10943) + PowerShellIdentifierImplGen(IDENTIFIER)(10943,10945) + PsiElement(SIMPLE_ID)('d5')(10943,10945) + PsiWhiteSpace('\t\t')(10945,10947) + PsiComment(COMMENT)('# a collection of 5 date/time values')(10947,10983) + PsiElement(NLS)('\n')(10983,10984) + PowerShellPipelineTailImplGen(PIPELINE)(10984,11031) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(10984,10990) + PsiElement($)('$')(10984,10985) + PowerShellIdentifierImplGen(IDENTIFIER)(10985,10990) + PsiElement(SIMPLE_ID)('dates')(10985,10990) + PsiWhiteSpace(' ')(10990,10991) + PsiElement(|)('|')(10991,10992) + PsiWhiteSpace(' ')(10992,10993) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(10993,11031) + PowerShellCommandNameImplGen(COMMAND_NAME)(10993,11006) + PowerShellIdentifierImplGen(IDENTIFIER)(10993,11006) + PsiElement(GENERIC_ID_PART)('Select-Object')(10993,11006) + PsiWhiteSpace(' ')(11006,11007) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11007,11016) + PsiElement(CMD_PARAMETER)('-Property')(11007,11016) + PsiWhiteSpace(' ')(11016,11017) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11017,11021) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11017,11021) + PsiElement(SIMPLE_ID)('Year')(11017,11021) + PsiElement(,)(',')(11021,11022) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11022,11027) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11022,11027) + PsiElement(SIMPLE_ID)('Month')(11022,11027) + PsiElement(,)(',')(11027,11028) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11028,11031) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11028,11031) + PsiElement(SIMPLE_ID)('Day')(11028,11031) + PsiElement(NLS)('\n')(11031,11032) + PowerShellPipelineTailImplGen(PIPELINE)(11032,11071) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(11032,11038) + PsiElement($)('$')(11032,11033) + PowerShellIdentifierImplGen(IDENTIFIER)(11033,11038) + PsiElement(SIMPLE_ID)('dates')(11033,11038) + PsiWhiteSpace(' ')(11038,11039) + PsiElement(|)('|')(11039,11040) + PsiWhiteSpace(' ')(11040,11041) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11041,11071) + PowerShellCommandNameImplGen(COMMAND_NAME)(11041,11054) + PowerShellIdentifierImplGen(IDENTIFIER)(11041,11054) + PsiElement(GENERIC_ID_PART)('Select-Object')(11041,11054) + PsiWhiteSpace(' ')(11054,11055) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11055,11061) + PsiElement(CMD_PARAMETER)('-First')(11055,11061) + PsiWhiteSpace(' ')(11061,11062) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11062,11063) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11062,11063) + PsiElement(DEC_INTEGER)('1')(11062,11063) + PsiWhiteSpace(' ')(11063,11064) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11064,11069) + PsiElement(CMD_PARAMETER)('-Last')(11064,11069) + PsiWhiteSpace(' ')(11069,11070) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11070,11071) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11070,11071) + PsiElement(DEC_INTEGER)('2')(11070,11071) + PsiElement(NLS)('\n\n')(11071,11073) + PsiComment(COMMENT)('#Sets one or more characteristics of one or more existing aliases. If the aliases do not exist, creates them with those characteristics.')(11073,11209) + PsiElement(NLS)('\n')(11209,11210) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11210,11232) + PowerShellCommandNameImplGen(COMMAND_NAME)(11210,11219) + PowerShellIdentifierImplGen(IDENTIFIER)(11210,11219) + PsiElement(GENERIC_ID_PART)('New-Alias')(11210,11219) + PsiWhiteSpace(' ')(11219,11220) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11220,11227) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11220,11227) + PsiElement(VERBATIM_STRING)(''Func1'')(11220,11227) + PsiWhiteSpace(' ')(11227,11228) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11228,11232) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11228,11232) + PsiElement(VERBATIM_STRING)(''F1'')(11228,11232) + PsiElement(NLS)('\n')(11232,11233) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11233,11272) + PowerShellCommandNameImplGen(COMMAND_NAME)(11233,11242) + PowerShellIdentifierImplGen(IDENTIFIER)(11233,11242) + PsiElement(GENERIC_ID_PART)('Set-Alias')(11233,11242) + PsiWhiteSpace(' ')(11242,11243) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11243,11250) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11243,11250) + PsiElement(VERBATIM_STRING)(''Func1'')(11243,11250) + PsiWhiteSpace(' ')(11250,11251) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11251,11255) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11251,11255) + PsiElement(VERBATIM_STRING)(''F1'')(11251,11255) + PsiWhiteSpace(' ')(11255,11256) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11256,11268) + PsiElement(CMD_PARAMETER)('-Description')(11256,11268) + PsiWhiteSpace(' ')(11268,11269) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11269,11272) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11269,11272) + PsiElement(DQ_OPEN)('"')(11269,11270) + PsiElement(EXPANDABLE_STRING_PART)('…')(11270,11271) + PsiElement(DQ_CLOSE)('"')(11271,11272) + PsiElement(NLS)('\n')(11272,11273) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11273,11309) + PowerShellCommandNameImplGen(COMMAND_NAME)(11273,11282) + PowerShellIdentifierImplGen(IDENTIFIER)(11273,11282) + PsiElement(GENERIC_ID_PART)('Set-Alias')(11273,11282) + PsiWhiteSpace(' ')(11282,11283) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11283,11290) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11283,11290) + PsiElement(VERBATIM_STRING)(''Func1'')(11283,11290) PsiWhiteSpace(' ')(11290,11291) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11291,11294) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11291,11294) - PsiElement(DQ_OPEN)('"')(11291,11292) - PsiElement(EXPANDABLE_STRING_PART)('…')(11292,11293) - PsiElement(DQ_CLOSE)('"')(11293,11294) - PsiElement(NLS)('\n')(11294,11295) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11295,11331) - PowerShellCommandNameImplGen(COMMAND_NAME)(11295,11304) - PowerShellIdentifierImplGen(IDENTIFIER)(11295,11304) - PsiElement(GENERIC_ID_PART)('Set-Alias')(11295,11304) - PsiWhiteSpace(' ')(11304,11305) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11305,11312) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11305,11312) - PsiElement(VERBATIM_STRING)(''Func1'')(11305,11312) - PsiWhiteSpace(' ')(11312,11313) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11313,11317) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11313,11317) - PsiElement(VERBATIM_STRING)(''F1'')(11313,11317) - PsiWhiteSpace(' ')(11317,11318) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11318,11324) - PsiElement(CMD_PARAMETER)('-Scope')(11318,11324) - PsiWhiteSpace(' ')(11324,11325) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11325,11331) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11325,11331) - PsiElement(SIMPLE_ID)('Global')(11325,11331) - PsiElement(NLS)('\n')(11331,11332) - PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(11332,11349) - PsiElement(function)('function')(11332,11340) - PsiWhiteSpace(' ')(11340,11341) - PowerShellIdentifierImplGen(IDENTIFIER)(11341,11343) - PsiElement(SIMPLE_ID)('F1')(11341,11343) - PsiWhiteSpace(' ')(11343,11344) - PsiElement({)('{')(11344,11345) - PsiWhiteSpace(' ')(11345,11346) - PowerShellBlockBodyImplGen(BLOCK_BODY)(11346,11347) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11346,11347) - PowerShellCommandNameImplGen(COMMAND_NAME)(11346,11347) - PowerShellIdentifierImplGen(IDENTIFIER)(11346,11347) - PsiElement(GENERIC_ID_PART)('…')(11346,11347) - PsiWhiteSpace(' ')(11347,11348) - PsiElement(})('}')(11348,11349) - PsiElement(NLS)('\n\n')(11349,11351) - PsiComment(COMMENT)('#Replaces the content in an item (§3.3) with new content.')(11351,11408) - PsiElement(NLS)('\n')(11408,11409) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11409,11465) - PowerShellCommandNameImplGen(COMMAND_NAME)(11409,11420) - PowerShellIdentifierImplGen(IDENTIFIER)(11409,11420) - PsiElement(GENERIC_ID_PART)('Set-Content')(11409,11420) - PsiWhiteSpace(' ')(11420,11421) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11421,11440) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11421,11440) - PsiElement(DQ_OPEN)('"')(11421,11422) - PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(11422,11439) - PsiElement(DQ_CLOSE)('"')(11439,11440) - PsiWhiteSpace(' ')(11440,11441) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11441,11447) - PsiElement(CMD_PARAMETER)('-Value')(11441,11447) - PsiWhiteSpace(' ')(11447,11448) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11448,11456) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11448,11456) - PsiElement(DQ_OPEN)('"')(11448,11449) - PsiElement(EXPANDABLE_STRING_PART)('Line A')(11449,11455) - PsiElement(DQ_CLOSE)('"')(11455,11456) - PsiElement(,)(',')(11456,11457) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11457,11465) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11457,11465) - PsiElement(DQ_OPEN)('"')(11457,11458) - PsiElement(EXPANDABLE_STRING_PART)('Line B')(11458,11464) - PsiElement(DQ_CLOSE)('"')(11464,11465) - PsiElement(NLS)('\n\n')(11465,11467) - PsiComment(COMMENT)('#Changes the value of one or more items (§3.3).')(11467,11514) - PsiElement(NLS)('\n')(11514,11515) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11515,11549) - PowerShellCommandNameImplGen(COMMAND_NAME)(11515,11523) - PowerShellIdentifierImplGen(IDENTIFIER)(11515,11523) - PsiElement(GENERIC_ID_PART)('Set-Item')(11515,11523) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11291,11295) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11291,11295) + PsiElement(VERBATIM_STRING)(''F1'')(11291,11295) + PsiWhiteSpace(' ')(11295,11296) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11296,11302) + PsiElement(CMD_PARAMETER)('-Scope')(11296,11302) + PsiWhiteSpace(' ')(11302,11303) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11303,11309) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11303,11309) + PsiElement(SIMPLE_ID)('Global')(11303,11309) + PsiElement(NLS)('\n')(11309,11310) + PowerShellFunctionStatementImplGen(FUNCTION_STATEMENT)(11310,11327) + PsiElement(function)('function')(11310,11318) + PsiWhiteSpace(' ')(11318,11319) + PowerShellIdentifierImplGen(IDENTIFIER)(11319,11321) + PsiElement(SIMPLE_ID)('F1')(11319,11321) + PsiWhiteSpace(' ')(11321,11322) + PsiElement({)('{')(11322,11323) + PsiWhiteSpace(' ')(11323,11324) + PowerShellBlockBodyImplGen(BLOCK_BODY)(11324,11325) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11324,11325) + PowerShellCommandNameImplGen(COMMAND_NAME)(11324,11325) + PowerShellIdentifierImplGen(IDENTIFIER)(11324,11325) + PsiElement(GENERIC_ID_PART)('…')(11324,11325) + PsiWhiteSpace(' ')(11325,11326) + PsiElement(})('}')(11326,11327) + PsiElement(NLS)('\n\n')(11327,11329) + PsiComment(COMMENT)('#Replaces the content in an item (§3.3) with new content.')(11329,11386) + PsiElement(NLS)('\n')(11386,11387) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11387,11443) + PowerShellCommandNameImplGen(COMMAND_NAME)(11387,11398) + PowerShellIdentifierImplGen(IDENTIFIER)(11387,11398) + PsiElement(GENERIC_ID_PART)('Set-Content')(11387,11398) + PsiWhiteSpace(' ')(11398,11399) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11399,11418) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11399,11418) + PsiElement(DQ_OPEN)('"')(11399,11400) + PsiElement(EXPANDABLE_STRING_PART)('J:\Test\File2.txt')(11400,11417) + PsiElement(DQ_CLOSE)('"')(11417,11418) + PsiWhiteSpace(' ')(11418,11419) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11419,11425) + PsiElement(CMD_PARAMETER)('-Value')(11419,11425) + PsiWhiteSpace(' ')(11425,11426) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11426,11434) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11426,11434) + PsiElement(DQ_OPEN)('"')(11426,11427) + PsiElement(EXPANDABLE_STRING_PART)('Line A')(11427,11433) + PsiElement(DQ_CLOSE)('"')(11433,11434) + PsiElement(,)(',')(11434,11435) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11435,11443) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11435,11443) + PsiElement(DQ_OPEN)('"')(11435,11436) + PsiElement(EXPANDABLE_STRING_PART)('Line B')(11436,11442) + PsiElement(DQ_CLOSE)('"')(11442,11443) + PsiElement(NLS)('\n\n')(11443,11445) + PsiComment(COMMENT)('#Changes the value of one or more items (§3.3).')(11445,11492) + PsiElement(NLS)('\n')(11492,11493) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11493,11527) + PowerShellCommandNameImplGen(COMMAND_NAME)(11493,11501) + PowerShellIdentifierImplGen(IDENTIFIER)(11493,11501) + PsiElement(GENERIC_ID_PART)('Set-Item')(11493,11501) + PsiWhiteSpace(' ')(11501,11502) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11502,11511) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11502,11511) + PowerShellPathItemImplGen(PATH_ITEM)(11502,11510) + PsiElement(SIMPLE_ID)('Variable')(11502,11510) + PsiElement(:)(':')(11510,11511) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11511,11516) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11511,11516) + PsiElement(SIMPLE_ID)('Count')(11511,11516) + PsiWhiteSpace(' ')(11516,11517) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11517,11523) + PsiElement(CMD_PARAMETER)('-Value')(11517,11523) PsiWhiteSpace(' ')(11523,11524) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11524,11533) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11524,11533) - PowerShellPathItemImplGen(PATH_ITEM)(11524,11532) - PsiElement(SIMPLE_ID)('Variable')(11524,11532) - PsiElement(:)(':')(11532,11533) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11533,11538) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11533,11538) - PsiElement(SIMPLE_ID)('Count')(11533,11538) - PsiWhiteSpace(' ')(11538,11539) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11539,11545) - PsiElement(CMD_PARAMETER)('-Value')(11539,11545) - PsiWhiteSpace(' ')(11545,11546) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11546,11549) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11546,11549) - PsiElement(DEC_INTEGER)('200')(11546,11549) - PsiElement(NLS)('\n')(11549,11550) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11550,11602) - PowerShellCommandNameImplGen(COMMAND_NAME)(11550,11558) - PowerShellIdentifierImplGen(IDENTIFIER)(11550,11558) - PsiElement(GENERIC_ID_PART)('Set-Item')(11550,11558) - PsiWhiteSpace(' ')(11558,11559) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11559,11563) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11559,11563) - PowerShellPathItemImplGen(PATH_ITEM)(11559,11562) - PsiElement(SIMPLE_ID)('Env')(11559,11562) - PsiElement(:)(':')(11562,11563) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11563,11567) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11563,11567) - PsiElement(SIMPLE_ID)('Day1')(11563,11567) - PsiElement(,)(',')(11567,11568) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11568,11572) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11568,11572) - PowerShellPathItemImplGen(PATH_ITEM)(11568,11571) - PsiElement(SIMPLE_ID)('Env')(11568,11571) - PsiElement(:)(':')(11571,11572) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11572,11576) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11572,11576) - PsiElement(SIMPLE_ID)('Day2')(11572,11576) - PsiWhiteSpace(' ')(11576,11577) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11577,11583) - PsiElement(CMD_PARAMETER)('-Value')(11577,11583) - PsiWhiteSpace(' ')(11583,11584) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11584,11592) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11584,11592) - PsiElement(DQ_OPEN)('"')(11584,11585) - PsiElement(EXPANDABLE_STRING_PART)('Monday')(11585,11591) - PsiElement(DQ_CLOSE)('"')(11591,11592) - PsiWhiteSpace(' ')(11592,11593) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11593,11602) - PsiElement(CMD_PARAMETER)('-PassThru')(11593,11602) - PsiElement(NLS)('\n\n')(11602,11604) - PsiComment(COMMENT)('#Sets the current working location or sets the current working location stack.')(11604,11682) - PsiElement(NLS)('\n')(11682,11683) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11683,11703) - PowerShellCommandNameImplGen(COMMAND_NAME)(11683,11695) - PowerShellIdentifierImplGen(IDENTIFIER)(11683,11695) - PsiElement(GENERIC_ID_PART)('Set-Location')(11683,11695) - PsiWhiteSpace(' ')(11695,11696) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11696,11703) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11696,11703) - PowerShellPathItemImplGen(PATH_ITEM)(11696,11697) - PsiElement(SIMPLE_ID)('c')(11696,11697) - PsiElement(:)(':')(11697,11698) - PsiElement(\)('\')(11698,11699) - PowerShellPathItemImplGen(PATH_ITEM)(11699,11703) - PsiElement(SIMPLE_ID)('temp')(11699,11703) - PsiElement(NLS)('\n')(11703,11704) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11704,11719) - PowerShellCommandNameImplGen(COMMAND_NAME)(11704,11716) - PowerShellIdentifierImplGen(IDENTIFIER)(11704,11716) - PsiElement(GENERIC_ID_PART)('Set-Location')(11704,11716) - PsiWhiteSpace(' ')(11716,11717) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11717,11719) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11717,11719) - PowerShellPathItemImplGen(PATH_ITEM)(11717,11718) - PsiElement(SIMPLE_ID)('G')(11717,11718) - PsiElement(:)(':')(11718,11719) - PsiElement(NLS)('\n')(11719,11720) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11720,11762) - PowerShellCommandNameImplGen(COMMAND_NAME)(11720,11732) - PowerShellIdentifierImplGen(IDENTIFIER)(11720,11732) - PsiElement(GENERIC_ID_PART)('Set-Location')(11720,11732) - PsiWhiteSpace(' ')(11732,11733) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11733,11743) - PsiElement(CMD_PARAMETER)('-StackName')(11733,11743) - PsiWhiteSpace(' ')(11743,11744) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11744,11752) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11744,11752) - PsiElement(DQ_OPEN)('"')(11744,11745) - PsiElement(EXPANDABLE_STRING_PART)('Stack1')(11745,11751) - PsiElement(DQ_CLOSE)('"')(11751,11752) - PsiWhiteSpace(' ')(11752,11753) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11753,11762) - PsiElement(CMD_PARAMETER)('-PassThru')(11753,11762) - PsiElement(NLS)('\n\n')(11762,11764) - PsiComment(COMMENT)('#Sets one or more characteristics of one or more existing variables or, if the variables do not exist, creates them with those characteristics.')(11764,11907) - PsiElement(NLS)('\n')(11907,11908) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11908,11935) - PowerShellCommandNameImplGen(COMMAND_NAME)(11908,11920) - PowerShellIdentifierImplGen(IDENTIFIER)(11908,11920) - PsiElement(GENERIC_ID_PART)('Set-Variable')(11908,11920) - PsiWhiteSpace(' ')(11920,11921) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11921,11931) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11921,11931) - PsiElement(VERBATIM_STRING)(''Count100'')(11921,11931) - PsiWhiteSpace(' ')(11931,11932) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11932,11935) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11932,11935) - PsiElement(DEC_INTEGER)('100')(11932,11935) - PsiWhiteSpace('\t\t\t\t\t\t\t\t')(11935,11943) - PsiComment(COMMENT)('# create new')(11943,11955) - PsiElement(NLS)('\n')(11955,11956) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11956,12005) - PowerShellCommandNameImplGen(COMMAND_NAME)(11956,11968) - PowerShellIdentifierImplGen(IDENTIFIER)(11956,11968) - PsiElement(GENERIC_ID_PART)('Set-Variable')(11956,11968) - PsiWhiteSpace(' ')(11968,11969) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11524,11527) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11524,11527) + PsiElement(DEC_INTEGER)('200')(11524,11527) + PsiElement(NLS)('\n')(11527,11528) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11528,11580) + PowerShellCommandNameImplGen(COMMAND_NAME)(11528,11536) + PowerShellIdentifierImplGen(IDENTIFIER)(11528,11536) + PsiElement(GENERIC_ID_PART)('Set-Item')(11528,11536) + PsiWhiteSpace(' ')(11536,11537) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11537,11541) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11537,11541) + PowerShellPathItemImplGen(PATH_ITEM)(11537,11540) + PsiElement(SIMPLE_ID)('Env')(11537,11540) + PsiElement(:)(':')(11540,11541) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11541,11545) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11541,11545) + PsiElement(SIMPLE_ID)('Day1')(11541,11545) + PsiElement(,)(',')(11545,11546) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11546,11550) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11546,11550) + PowerShellPathItemImplGen(PATH_ITEM)(11546,11549) + PsiElement(SIMPLE_ID)('Env')(11546,11549) + PsiElement(:)(':')(11549,11550) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11550,11554) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(11550,11554) + PsiElement(SIMPLE_ID)('Day2')(11550,11554) + PsiWhiteSpace(' ')(11554,11555) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11555,11561) + PsiElement(CMD_PARAMETER)('-Value')(11555,11561) + PsiWhiteSpace(' ')(11561,11562) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11562,11570) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11562,11570) + PsiElement(DQ_OPEN)('"')(11562,11563) + PsiElement(EXPANDABLE_STRING_PART)('Monday')(11563,11569) + PsiElement(DQ_CLOSE)('"')(11569,11570) + PsiWhiteSpace(' ')(11570,11571) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11571,11580) + PsiElement(CMD_PARAMETER)('-PassThru')(11571,11580) + PsiElement(NLS)('\n\n')(11580,11582) + PsiComment(COMMENT)('#Sets the current working location or sets the current working location stack.')(11582,11660) + PsiElement(NLS)('\n')(11660,11661) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11661,11681) + PowerShellCommandNameImplGen(COMMAND_NAME)(11661,11673) + PowerShellIdentifierImplGen(IDENTIFIER)(11661,11673) + PsiElement(GENERIC_ID_PART)('Set-Location')(11661,11673) + PsiWhiteSpace(' ')(11673,11674) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11674,11681) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11674,11681) + PowerShellPathItemImplGen(PATH_ITEM)(11674,11675) + PsiElement(SIMPLE_ID)('c')(11674,11675) + PsiElement(:)(':')(11675,11676) + PsiElement(\)('\')(11676,11677) + PowerShellPathItemImplGen(PATH_ITEM)(11677,11681) + PsiElement(SIMPLE_ID)('temp')(11677,11681) + PsiElement(NLS)('\n')(11681,11682) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11682,11697) + PowerShellCommandNameImplGen(COMMAND_NAME)(11682,11694) + PowerShellIdentifierImplGen(IDENTIFIER)(11682,11694) + PsiElement(GENERIC_ID_PART)('Set-Location')(11682,11694) + PsiWhiteSpace(' ')(11694,11695) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11695,11697) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(11695,11697) + PowerShellPathItemImplGen(PATH_ITEM)(11695,11696) + PsiElement(SIMPLE_ID)('G')(11695,11696) + PsiElement(:)(':')(11696,11697) + PsiElement(NLS)('\n')(11697,11698) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11698,11740) + PowerShellCommandNameImplGen(COMMAND_NAME)(11698,11710) + PowerShellIdentifierImplGen(IDENTIFIER)(11698,11710) + PsiElement(GENERIC_ID_PART)('Set-Location')(11698,11710) + PsiWhiteSpace(' ')(11710,11711) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11711,11721) + PsiElement(CMD_PARAMETER)('-StackName')(11711,11721) + PsiWhiteSpace(' ')(11721,11722) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11722,11730) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11722,11730) + PsiElement(DQ_OPEN)('"')(11722,11723) + PsiElement(EXPANDABLE_STRING_PART)('Stack1')(11723,11729) + PsiElement(DQ_CLOSE)('"')(11729,11730) + PsiWhiteSpace(' ')(11730,11731) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(11731,11740) + PsiElement(CMD_PARAMETER)('-PassThru')(11731,11740) + PsiElement(NLS)('\n\n')(11740,11742) + PsiComment(COMMENT)('#Sets one or more characteristics of one or more existing variables or, if the variables do not exist, creates them with those characteristics.')(11742,11885) + PsiElement(NLS)('\n')(11885,11886) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11886,11913) + PowerShellCommandNameImplGen(COMMAND_NAME)(11886,11898) + PowerShellIdentifierImplGen(IDENTIFIER)(11886,11898) + PsiElement(GENERIC_ID_PART)('Set-Variable')(11886,11898) + PsiWhiteSpace(' ')(11898,11899) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11899,11909) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11899,11909) + PsiElement(VERBATIM_STRING)(''Count100'')(11899,11909) + PsiWhiteSpace(' ')(11909,11910) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11910,11913) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11910,11913) + PsiElement(DEC_INTEGER)('100')(11910,11913) + PsiWhiteSpace('\t\t\t\t\t\t\t\t')(11913,11921) + PsiComment(COMMENT)('# create new')(11921,11933) + PsiElement(NLS)('\n')(11933,11934) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11934,11983) + PowerShellCommandNameImplGen(COMMAND_NAME)(11934,11946) + PowerShellIdentifierImplGen(IDENTIFIER)(11934,11946) + PsiElement(GENERIC_ID_PART)('Set-Variable')(11934,11946) + PsiWhiteSpace(' ')(11946,11947) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11947,11957) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11947,11957) + PsiElement(VERBATIM_STRING)(''Count101'')(11947,11957) + PsiElement(,)(',')(11957,11958) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11958,11968) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11958,11968) + PsiElement(VERBATIM_STRING)(''Count102'')(11958,11968) + PsiElement(,)(',')(11968,11969) PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11969,11979) PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11969,11979) - PsiElement(VERBATIM_STRING)(''Count101'')(11969,11979) - PsiElement(,)(',')(11979,11980) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11980,11990) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11980,11990) - PsiElement(VERBATIM_STRING)(''Count102'')(11980,11990) - PsiElement(,)(',')(11990,11991) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11991,12001) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(11991,12001) - PsiElement(VERBATIM_STRING)(''Count103'')(11991,12001) - PsiWhiteSpace(' ')(12001,12002) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12002,12005) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12002,12005) - PsiElement(DEC_INTEGER)('110')(12002,12005) - PsiWhiteSpace('\t')(12005,12006) - PsiComment(COMMENT)('# create new')(12006,12018) - PsiElement(NLS)('\n')(12018,12019) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12019,12046) - PowerShellCommandNameImplGen(COMMAND_NAME)(12019,12031) - PowerShellIdentifierImplGen(IDENTIFIER)(12019,12031) - PsiElement(GENERIC_ID_PART)('Set-Variable')(12019,12031) - PsiWhiteSpace(' ')(12031,12032) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12032,12042) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12032,12042) - PsiElement(VERBATIM_STRING)(''Count100'')(12032,12042) - PsiWhiteSpace(' ')(12042,12043) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12043,12046) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12043,12046) - PsiElement(DEC_INTEGER)('200')(12043,12046) - PsiWhiteSpace('\t\t\t\t\t\t\t\t')(12046,12054) - PsiComment(COMMENT)('# change existing')(12054,12071) - PsiElement(NLS)('\n')(12071,12072) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12072,12121) - PowerShellCommandNameImplGen(COMMAND_NAME)(12072,12084) - PowerShellIdentifierImplGen(IDENTIFIER)(12072,12084) - PsiElement(GENERIC_ID_PART)('Set-Variable')(12072,12084) - PsiWhiteSpace(' ')(12084,12085) + PsiElement(VERBATIM_STRING)(''Count103'')(11969,11979) + PsiWhiteSpace(' ')(11979,11980) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(11980,11983) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(11980,11983) + PsiElement(DEC_INTEGER)('110')(11980,11983) + PsiWhiteSpace('\t')(11983,11984) + PsiComment(COMMENT)('# create new')(11984,11996) + PsiElement(NLS)('\n')(11996,11997) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(11997,12024) + PowerShellCommandNameImplGen(COMMAND_NAME)(11997,12009) + PowerShellIdentifierImplGen(IDENTIFIER)(11997,12009) + PsiElement(GENERIC_ID_PART)('Set-Variable')(11997,12009) + PsiWhiteSpace(' ')(12009,12010) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12010,12020) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12010,12020) + PsiElement(VERBATIM_STRING)(''Count100'')(12010,12020) + PsiWhiteSpace(' ')(12020,12021) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12021,12024) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12021,12024) + PsiElement(DEC_INTEGER)('200')(12021,12024) + PsiWhiteSpace('\t\t\t\t\t\t\t\t')(12024,12032) + PsiComment(COMMENT)('# change existing')(12032,12049) + PsiElement(NLS)('\n')(12049,12050) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12050,12099) + PowerShellCommandNameImplGen(COMMAND_NAME)(12050,12062) + PowerShellIdentifierImplGen(IDENTIFIER)(12050,12062) + PsiElement(GENERIC_ID_PART)('Set-Variable')(12050,12062) + PsiWhiteSpace(' ')(12062,12063) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12063,12073) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12063,12073) + PsiElement(VERBATIM_STRING)(''Count101'')(12063,12073) + PsiElement(,)(',')(12073,12074) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12074,12084) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12074,12084) + PsiElement(VERBATIM_STRING)(''Count102'')(12074,12084) + PsiElement(,)(',')(12084,12085) PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12085,12095) PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12085,12095) - PsiElement(VERBATIM_STRING)(''Count101'')(12085,12095) - PsiElement(,)(',')(12095,12096) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12096,12106) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12096,12106) - PsiElement(VERBATIM_STRING)(''Count102'')(12096,12106) - PsiElement(,)(',')(12106,12107) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12107,12117) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12107,12117) - PsiElement(VERBATIM_STRING)(''Count104'')(12107,12117) - PsiWhiteSpace(' ')(12117,12118) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12118,12121) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12118,12121) - PsiElement(DEC_INTEGER)('210')(12118,12121) - PsiWhiteSpace('\t')(12121,12122) - PsiComment(COMMENT)('# change 2, create 1')(12122,12142) - PsiElement(NLS)('\n')(12142,12143) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12143,12201) - PowerShellCommandNameImplGen(COMMAND_NAME)(12143,12155) - PowerShellIdentifierImplGen(IDENTIFIER)(12143,12155) - PsiElement(GENERIC_ID_PART)('Set-Variable')(12143,12155) - PsiWhiteSpace(' ')(12155,12156) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12156,12166) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12156,12166) - PsiElement(VERBATIM_STRING)(''Count10?'')(12156,12166) - PsiWhiteSpace(' ')(12166,12167) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12167,12170) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12167,12170) - PsiElement(DEC_INTEGER)('111')(12167,12170) - PsiWhiteSpace(' ')(12170,12171) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12171,12179) - PsiElement(CMD_PARAMETER)('-Exclude')(12171,12179) - PsiWhiteSpace(' ')(12179,12180) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12180,12190) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12180,12190) - PsiElement(VERBATIM_STRING)(''Count101'')(12180,12190) - PsiElement(,)(',')(12190,12191) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12191,12201) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12191,12201) - PsiElement(VERBATIM_STRING)(''Count102'')(12191,12201) - PsiElement(NLS)('\n\n')(12201,12203) - PsiComment(COMMENT)('#Sorts objects by one or more property values.')(12203,12249) - PsiElement(NLS)('\n')(12249,12250) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12250,12288) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12250,12253) - PsiElement($)('$')(12250,12251) - PowerShellIdentifierImplGen(IDENTIFIER)(12251,12253) - PsiElement(SIMPLE_ID)('d1')(12251,12253) - PsiWhiteSpace(' ')(12253,12254) - PsiElement(=)('=')(12254,12255) - PsiWhiteSpace(' ')(12255,12256) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12256,12288) - PowerShellCommandNameImplGen(COMMAND_NAME)(12256,12264) - PowerShellIdentifierImplGen(IDENTIFIER)(12256,12264) - PsiElement(GENERIC_ID_PART)('Get-Date')(12256,12264) - PsiWhiteSpace(' ')(12264,12265) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12265,12288) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12265,12288) - PsiElement(DQ_OPEN)('"')(12265,12266) - PsiElement(EXPANDABLE_STRING_PART)('03/04/2006 6:15:23 AM')(12266,12287) - PsiElement(DQ_CLOSE)('"')(12287,12288) - PsiElement(NLS)('\n')(12288,12289) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12289,12328) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12289,12292) - PsiElement($)('$')(12289,12290) - PowerShellIdentifierImplGen(IDENTIFIER)(12290,12292) - PsiElement(SIMPLE_ID)('d5')(12290,12292) - PsiWhiteSpace(' ')(12292,12293) - PsiElement(=)('=')(12293,12294) - PsiWhiteSpace(' ')(12294,12295) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12295,12328) - PowerShellCommandNameImplGen(COMMAND_NAME)(12295,12303) - PowerShellIdentifierImplGen(IDENTIFIER)(12295,12303) - PsiElement(GENERIC_ID_PART)('Get-Date')(12295,12303) - PsiWhiteSpace(' ')(12303,12304) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12304,12328) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12304,12328) - PsiElement(DQ_OPEN)('"')(12304,12305) - PsiElement(EXPANDABLE_STRING_PART)('03/01/2006 11:23:56 PM')(12305,12327) - PsiElement(DQ_CLOSE)('"')(12327,12328) - PsiElement(NLS)('\n')(12328,12329) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12329,12357) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12329,12335) - PsiElement($)('$')(12329,12330) - PowerShellIdentifierImplGen(IDENTIFIER)(12330,12335) - PsiElement(SIMPLE_ID)('dates')(12330,12335) - PsiWhiteSpace(' ')(12335,12336) - PsiElement(=)('=')(12336,12337) - PsiWhiteSpace(' ')(12337,12338) - PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(12338,12357) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12338,12341) - PsiElement($)('$')(12338,12339) - PowerShellIdentifierImplGen(IDENTIFIER)(12339,12341) - PsiElement(SIMPLE_ID)('d1')(12339,12341) - PsiElement(,)(',')(12341,12342) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12342,12345) + PsiElement(VERBATIM_STRING)(''Count104'')(12085,12095) + PsiWhiteSpace(' ')(12095,12096) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12096,12099) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12096,12099) + PsiElement(DEC_INTEGER)('210')(12096,12099) + PsiWhiteSpace('\t')(12099,12100) + PsiComment(COMMENT)('# change 2, create 1')(12100,12120) + PsiElement(NLS)('\n')(12120,12121) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12121,12179) + PowerShellCommandNameImplGen(COMMAND_NAME)(12121,12133) + PowerShellIdentifierImplGen(IDENTIFIER)(12121,12133) + PsiElement(GENERIC_ID_PART)('Set-Variable')(12121,12133) + PsiWhiteSpace(' ')(12133,12134) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12134,12144) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12134,12144) + PsiElement(VERBATIM_STRING)(''Count10?'')(12134,12144) + PsiWhiteSpace(' ')(12144,12145) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12145,12148) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(12145,12148) + PsiElement(DEC_INTEGER)('111')(12145,12148) + PsiWhiteSpace(' ')(12148,12149) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12149,12157) + PsiElement(CMD_PARAMETER)('-Exclude')(12149,12157) + PsiWhiteSpace(' ')(12157,12158) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12158,12168) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12158,12168) + PsiElement(VERBATIM_STRING)(''Count101'')(12158,12168) + PsiElement(,)(',')(12168,12169) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12169,12179) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12169,12179) + PsiElement(VERBATIM_STRING)(''Count102'')(12169,12179) + PsiElement(NLS)('\n\n')(12179,12181) + PsiComment(COMMENT)('#Sorts objects by one or more property values.')(12181,12227) + PsiElement(NLS)('\n')(12227,12228) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12228,12266) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12228,12231) + PsiElement($)('$')(12228,12229) + PowerShellIdentifierImplGen(IDENTIFIER)(12229,12231) + PsiElement(SIMPLE_ID)('d1')(12229,12231) + PsiWhiteSpace(' ')(12231,12232) + PsiElement(=)('=')(12232,12233) + PsiWhiteSpace(' ')(12233,12234) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12234,12266) + PowerShellCommandNameImplGen(COMMAND_NAME)(12234,12242) + PowerShellIdentifierImplGen(IDENTIFIER)(12234,12242) + PsiElement(GENERIC_ID_PART)('Get-Date')(12234,12242) + PsiWhiteSpace(' ')(12242,12243) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12243,12266) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12243,12266) + PsiElement(DQ_OPEN)('"')(12243,12244) + PsiElement(EXPANDABLE_STRING_PART)('03/04/2006 6:15:23 AM')(12244,12265) + PsiElement(DQ_CLOSE)('"')(12265,12266) + PsiElement(NLS)('\n')(12266,12267) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12267,12306) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12267,12270) + PsiElement($)('$')(12267,12268) + PowerShellIdentifierImplGen(IDENTIFIER)(12268,12270) + PsiElement(SIMPLE_ID)('d5')(12268,12270) + PsiWhiteSpace(' ')(12270,12271) + PsiElement(=)('=')(12271,12272) + PsiWhiteSpace(' ')(12272,12273) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12273,12306) + PowerShellCommandNameImplGen(COMMAND_NAME)(12273,12281) + PowerShellIdentifierImplGen(IDENTIFIER)(12273,12281) + PsiElement(GENERIC_ID_PART)('Get-Date')(12273,12281) + PsiWhiteSpace(' ')(12281,12282) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12282,12306) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12282,12306) + PsiElement(DQ_OPEN)('"')(12282,12283) + PsiElement(EXPANDABLE_STRING_PART)('03/01/2006 11:23:56 PM')(12283,12305) + PsiElement(DQ_CLOSE)('"')(12305,12306) + PsiElement(NLS)('\n')(12306,12307) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12307,12335) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12307,12313) + PsiElement($)('$')(12307,12308) + PowerShellIdentifierImplGen(IDENTIFIER)(12308,12313) + PsiElement(SIMPLE_ID)('dates')(12308,12313) + PsiWhiteSpace(' ')(12313,12314) + PsiElement(=)('=')(12314,12315) + PsiWhiteSpace(' ')(12315,12316) + PowerShellArrayLiteralExpressionImplGen(ARRAY_LITERAL_EXPRESSION)(12316,12335) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12316,12319) + PsiElement($)('$')(12316,12317) + PowerShellIdentifierImplGen(IDENTIFIER)(12317,12319) + PsiElement(SIMPLE_ID)('d1')(12317,12319) + PsiElement(,)(',')(12319,12320) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12320,12323) + PsiElement($)('$')(12320,12321) + PowerShellIdentifierImplGen(IDENTIFIER)(12321,12323) + PsiElement(SIMPLE_ID)('d2')(12321,12323) + PsiElement(,)(',')(12323,12324) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12324,12327) + PsiElement($)('$')(12324,12325) + PowerShellIdentifierImplGen(IDENTIFIER)(12325,12327) + PsiElement(SIMPLE_ID)('d3')(12325,12327) + PsiElement(,)(',')(12327,12328) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12328,12331) + PsiElement($)('$')(12328,12329) + PowerShellIdentifierImplGen(IDENTIFIER)(12329,12331) + PsiElement(SIMPLE_ID)('d4')(12329,12331) + PsiElement(,)(',')(12331,12332) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12332,12335) + PsiElement($)('$')(12332,12333) + PowerShellIdentifierImplGen(IDENTIFIER)(12333,12335) + PsiElement(SIMPLE_ID)('d5')(12333,12335) + PsiElement(NLS)('\n\n')(12335,12337) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12337,12362) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12337,12339) + PsiElement($)('$')(12337,12338) + PowerShellIdentifierImplGen(IDENTIFIER)(12338,12339) + PsiElement(SIMPLE_ID)('v')(12338,12339) + PsiWhiteSpace(' ')(12339,12340) + PsiElement(=)('=')(12340,12341) + PsiWhiteSpace(' ')(12341,12342) + PowerShellPipelineTailImplGen(PIPELINE)(12342,12362) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12342,12348) PsiElement($)('$')(12342,12343) - PowerShellIdentifierImplGen(IDENTIFIER)(12343,12345) - PsiElement(SIMPLE_ID)('d2')(12343,12345) - PsiElement(,)(',')(12345,12346) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12346,12349) - PsiElement($)('$')(12346,12347) - PowerShellIdentifierImplGen(IDENTIFIER)(12347,12349) - PsiElement(SIMPLE_ID)('d3')(12347,12349) - PsiElement(,)(',')(12349,12350) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12350,12353) - PsiElement($)('$')(12350,12351) - PowerShellIdentifierImplGen(IDENTIFIER)(12351,12353) - PsiElement(SIMPLE_ID)('d4')(12351,12353) - PsiElement(,)(',')(12353,12354) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12354,12357) - PsiElement($)('$')(12354,12355) - PowerShellIdentifierImplGen(IDENTIFIER)(12355,12357) - PsiElement(SIMPLE_ID)('d5')(12355,12357) - PsiElement(NLS)('\n\n')(12357,12359) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12359,12384) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12359,12361) - PsiElement($)('$')(12359,12360) - PowerShellIdentifierImplGen(IDENTIFIER)(12360,12361) - PsiElement(SIMPLE_ID)('v')(12360,12361) - PsiWhiteSpace(' ')(12361,12362) - PsiElement(=)('=')(12362,12363) - PsiWhiteSpace(' ')(12363,12364) - PowerShellPipelineTailImplGen(PIPELINE)(12364,12384) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12364,12370) - PsiElement($)('$')(12364,12365) - PowerShellIdentifierImplGen(IDENTIFIER)(12365,12370) - PsiElement(SIMPLE_ID)('dates')(12365,12370) - PsiWhiteSpace(' ')(12370,12371) - PsiElement(|)('|')(12371,12372) - PsiWhiteSpace(' ')(12372,12373) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12373,12384) - PowerShellCommandNameImplGen(COMMAND_NAME)(12373,12384) - PowerShellIdentifierImplGen(IDENTIFIER)(12373,12384) - PsiElement(GENERIC_ID_PART)('Sort-Object')(12373,12384) - PsiElement(NLS)('\n')(12384,12385) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12385,12430) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12385,12387) - PsiElement($)('$')(12385,12386) - PowerShellIdentifierImplGen(IDENTIFIER)(12386,12387) - PsiElement(SIMPLE_ID)('v')(12386,12387) - PsiWhiteSpace(' ')(12387,12388) - PsiElement(=)('=')(12388,12389) - PsiWhiteSpace(' ')(12389,12390) - PowerShellPipelineTailImplGen(PIPELINE)(12390,12430) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12390,12396) - PsiElement($)('$')(12390,12391) - PowerShellIdentifierImplGen(IDENTIFIER)(12391,12396) - PsiElement(SIMPLE_ID)('dates')(12391,12396) - PsiWhiteSpace(' ')(12396,12397) - PsiElement(|)('|')(12397,12398) - PsiWhiteSpace(' ')(12398,12399) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12399,12430) - PowerShellCommandNameImplGen(COMMAND_NAME)(12399,12410) - PowerShellIdentifierImplGen(IDENTIFIER)(12399,12410) - PsiElement(GENERIC_ID_PART)('Sort-Object')(12399,12410) - PsiWhiteSpace(' ')(12410,12411) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12411,12422) - PsiElement(CMD_PARAMETER)('-Descending')(12411,12422) - PsiWhiteSpace(' ')(12422,12423) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12423,12430) - PsiElement(CMD_PARAMETER)('-Unique')(12423,12430) - PsiElement(NLS)('\n')(12430,12431) - PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12431,12544) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12431,12433) - PsiElement($)('$')(12431,12432) - PowerShellIdentifierImplGen(IDENTIFIER)(12432,12433) - PsiElement(SIMPLE_ID)('v')(12432,12433) - PsiWhiteSpace(' ')(12433,12434) - PsiElement(=)('=')(12434,12435) - PsiWhiteSpace(' ')(12435,12436) - PowerShellPipelineTailImplGen(PIPELINE)(12436,12544) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12436,12442) - PsiElement($)('$')(12436,12437) - PowerShellIdentifierImplGen(IDENTIFIER)(12437,12442) - PsiElement(SIMPLE_ID)('dates')(12437,12442) - PsiWhiteSpace(' ')(12442,12443) - PsiElement(|)('|')(12443,12444) - PsiWhiteSpace(' ')(12444,12445) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12445,12544) - PowerShellCommandNameImplGen(COMMAND_NAME)(12445,12456) - PowerShellIdentifierImplGen(IDENTIFIER)(12445,12456) - PsiElement(GENERIC_ID_PART)('Sort-Object')(12445,12456) - PsiWhiteSpace(' ')(12456,12457) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12457,12466) - PsiElement(CMD_PARAMETER)('-Property')(12457,12466) - PsiWhiteSpace(' ')(12466,12467) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12467,12504) - PowerShellHashLiteralExpressionImplGen(HASH_LITERAL_EXPRESSION)(12467,12504) - PsiElement(@)('@')(12467,12468) - PsiElement({)('{')(12468,12469) - PowerShellBlockBodyImplGen(BLOCK_BODY)(12469,12503) - PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12469,12479) - PowerShellIdentifierImplGen(IDENTIFIER)(12469,12479) - PsiElement(SIMPLE_ID)('Expression')(12469,12479) - PsiElement(=)('=')(12479,12480) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12480,12485) - PsiElement(DQ_OPEN)('"')(12480,12481) - PsiElement(EXPANDABLE_STRING_PART)('Day')(12481,12484) - PsiElement(DQ_CLOSE)('"')(12484,12485) - PsiWhiteSpace(' ')(12485,12486) - PsiElement(;)(';')(12486,12487) - PsiWhiteSpace(' ')(12487,12488) - PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12488,12497) - PowerShellIdentifierImplGen(IDENTIFIER)(12488,12497) - PsiElement(SIMPLE_ID)('Ascending')(12488,12497) - PsiElement(=)('=')(12497,12498) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12498,12503) - PsiElement($)('$')(12498,12499) - PowerShellIdentifierImplGen(IDENTIFIER)(12499,12503) - PsiElement(SIMPLE_ID)('true')(12499,12503) - PsiElement(})('}')(12503,12504) - PsiElement(,)(',')(12504,12505) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12505,12544) - PowerShellHashLiteralExpressionImplGen(HASH_LITERAL_EXPRESSION)(12505,12544) - PsiElement(@)('@')(12505,12506) - PsiElement({)('{')(12506,12507) - PowerShellBlockBodyImplGen(BLOCK_BODY)(12507,12543) - PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12507,12517) - PowerShellIdentifierImplGen(IDENTIFIER)(12507,12517) - PsiElement(SIMPLE_ID)('Expression')(12507,12517) - PsiElement(=)('=')(12517,12518) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12518,12524) - PsiElement(DQ_OPEN)('"')(12518,12519) - PsiElement(EXPANDABLE_STRING_PART)('Hour')(12519,12523) - PsiElement(DQ_CLOSE)('"')(12523,12524) - PsiWhiteSpace(' ')(12524,12525) - PsiElement(;)(';')(12525,12526) - PsiWhiteSpace(' ')(12526,12527) - PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12527,12536) - PowerShellIdentifierImplGen(IDENTIFIER)(12527,12536) - PsiElement(SIMPLE_ID)('Ascending')(12527,12536) - PsiElement(=)('=')(12536,12537) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12537,12543) - PsiElement($)('$')(12537,12538) - PowerShellIdentifierImplGen(IDENTIFIER)(12538,12543) - PsiElement(SIMPLE_ID)('false')(12538,12543) - PsiElement(})('}')(12543,12544) - PsiElement(NLS)('\n\n')(12544,12546) - PsiComment(COMMENT)('#Retrieves the specified part of one or more paths (§3.4) or reports on certain characteristics of those paths.')(12546,12657) - PsiElement(NLS)('\n')(12657,12658) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12658,12694) - PowerShellCommandNameImplGen(COMMAND_NAME)(12658,12668) - PowerShellIdentifierImplGen(IDENTIFIER)(12658,12668) - PsiElement(GENERIC_ID_PART)('Split-Path')(12658,12668) - PsiWhiteSpace(' ')(12668,12669) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12669,12674) - PsiElement(CMD_PARAMETER)('-Path')(12669,12674) - PsiWhiteSpace(' ')(12674,12675) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12675,12682) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12675,12682) - PowerShellPathItemImplGen(PATH_ITEM)(12675,12677) - PsiElement(..)('..')(12675,12677) - PsiElement(\)('\')(12677,12678) - PowerShellPathItemImplGen(PATH_ITEM)(12678,12682) - PsiElement(SIMPLE_ID)('Temp')(12678,12682) - PsiWhiteSpace(' ')(12682,12683) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12683,12694) - PsiElement(CMD_PARAMETER)('-IsAbsolute')(12683,12694) - PsiWhiteSpace('\t\t\t\t\t\t')(12694,12700) - PsiComment(COMMENT)('# False')(12700,12707) - PsiElement(NLS)('\n')(12707,12708) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12708,12752) - PowerShellCommandNameImplGen(COMMAND_NAME)(12708,12718) - PowerShellIdentifierImplGen(IDENTIFIER)(12708,12718) - PsiElement(GENERIC_ID_PART)('Split-Path')(12708,12718) - PsiWhiteSpace(' ')(12718,12719) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12719,12724) - PsiElement(CMD_PARAMETER)('-Path')(12719,12724) + PowerShellIdentifierImplGen(IDENTIFIER)(12343,12348) + PsiElement(SIMPLE_ID)('dates')(12343,12348) + PsiWhiteSpace(' ')(12348,12349) + PsiElement(|)('|')(12349,12350) + PsiWhiteSpace(' ')(12350,12351) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12351,12362) + PowerShellCommandNameImplGen(COMMAND_NAME)(12351,12362) + PowerShellIdentifierImplGen(IDENTIFIER)(12351,12362) + PsiElement(GENERIC_ID_PART)('Sort-Object')(12351,12362) + PsiElement(NLS)('\n')(12362,12363) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12363,12408) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12363,12365) + PsiElement($)('$')(12363,12364) + PowerShellIdentifierImplGen(IDENTIFIER)(12364,12365) + PsiElement(SIMPLE_ID)('v')(12364,12365) + PsiWhiteSpace(' ')(12365,12366) + PsiElement(=)('=')(12366,12367) + PsiWhiteSpace(' ')(12367,12368) + PowerShellPipelineTailImplGen(PIPELINE)(12368,12408) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12368,12374) + PsiElement($)('$')(12368,12369) + PowerShellIdentifierImplGen(IDENTIFIER)(12369,12374) + PsiElement(SIMPLE_ID)('dates')(12369,12374) + PsiWhiteSpace(' ')(12374,12375) + PsiElement(|)('|')(12375,12376) + PsiWhiteSpace(' ')(12376,12377) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12377,12408) + PowerShellCommandNameImplGen(COMMAND_NAME)(12377,12388) + PowerShellIdentifierImplGen(IDENTIFIER)(12377,12388) + PsiElement(GENERIC_ID_PART)('Sort-Object')(12377,12388) + PsiWhiteSpace(' ')(12388,12389) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12389,12400) + PsiElement(CMD_PARAMETER)('-Descending')(12389,12400) + PsiWhiteSpace(' ')(12400,12401) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12401,12408) + PsiElement(CMD_PARAMETER)('-Unique')(12401,12408) + PsiElement(NLS)('\n')(12408,12409) + PowerShellAssignmentExpressionImplGen(ASSIGNMENT_EXPRESSION)(12409,12522) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12409,12411) + PsiElement($)('$')(12409,12410) + PowerShellIdentifierImplGen(IDENTIFIER)(12410,12411) + PsiElement(SIMPLE_ID)('v')(12410,12411) + PsiWhiteSpace(' ')(12411,12412) + PsiElement(=)('=')(12412,12413) + PsiWhiteSpace(' ')(12413,12414) + PowerShellPipelineTailImplGen(PIPELINE)(12414,12522) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12414,12420) + PsiElement($)('$')(12414,12415) + PowerShellIdentifierImplGen(IDENTIFIER)(12415,12420) + PsiElement(SIMPLE_ID)('dates')(12415,12420) + PsiWhiteSpace(' ')(12420,12421) + PsiElement(|)('|')(12421,12422) + PsiWhiteSpace(' ')(12422,12423) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12423,12522) + PowerShellCommandNameImplGen(COMMAND_NAME)(12423,12434) + PowerShellIdentifierImplGen(IDENTIFIER)(12423,12434) + PsiElement(GENERIC_ID_PART)('Sort-Object')(12423,12434) + PsiWhiteSpace(' ')(12434,12435) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12435,12444) + PsiElement(CMD_PARAMETER)('-Property')(12435,12444) + PsiWhiteSpace(' ')(12444,12445) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12445,12482) + PowerShellHashLiteralExpressionImplGen(HASH_LITERAL_EXPRESSION)(12445,12482) + PsiElement(@)('@')(12445,12446) + PsiElement({)('{')(12446,12447) + PowerShellBlockBodyImplGen(BLOCK_BODY)(12447,12481) + PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12447,12457) + PowerShellIdentifierImplGen(IDENTIFIER)(12447,12457) + PsiElement(SIMPLE_ID)('Expression')(12447,12457) + PsiElement(=)('=')(12457,12458) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12458,12463) + PsiElement(DQ_OPEN)('"')(12458,12459) + PsiElement(EXPANDABLE_STRING_PART)('Day')(12459,12462) + PsiElement(DQ_CLOSE)('"')(12462,12463) + PsiWhiteSpace(' ')(12463,12464) + PsiElement(;)(';')(12464,12465) + PsiWhiteSpace(' ')(12465,12466) + PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12466,12475) + PowerShellIdentifierImplGen(IDENTIFIER)(12466,12475) + PsiElement(SIMPLE_ID)('Ascending')(12466,12475) + PsiElement(=)('=')(12475,12476) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12476,12481) + PsiElement($)('$')(12476,12477) + PowerShellIdentifierImplGen(IDENTIFIER)(12477,12481) + PsiElement(SIMPLE_ID)('true')(12477,12481) + PsiElement(})('}')(12481,12482) + PsiElement(,)(',')(12482,12483) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12483,12522) + PowerShellHashLiteralExpressionImplGen(HASH_LITERAL_EXPRESSION)(12483,12522) + PsiElement(@)('@')(12483,12484) + PsiElement({)('{')(12484,12485) + PowerShellBlockBodyImplGen(BLOCK_BODY)(12485,12521) + PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12485,12495) + PowerShellIdentifierImplGen(IDENTIFIER)(12485,12495) + PsiElement(SIMPLE_ID)('Expression')(12485,12495) + PsiElement(=)('=')(12495,12496) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(12496,12502) + PsiElement(DQ_OPEN)('"')(12496,12497) + PsiElement(EXPANDABLE_STRING_PART)('Hour')(12497,12501) + PsiElement(DQ_CLOSE)('"')(12501,12502) + PsiWhiteSpace(' ')(12502,12503) + PsiElement(;)(';')(12503,12504) + PsiWhiteSpace(' ')(12504,12505) + PowerShellKeyExpressionImplGen(KEY_EXPRESSION)(12505,12514) + PowerShellIdentifierImplGen(IDENTIFIER)(12505,12514) + PsiElement(SIMPLE_ID)('Ascending')(12505,12514) + PsiElement(=)('=')(12514,12515) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(12515,12521) + PsiElement($)('$')(12515,12516) + PowerShellIdentifierImplGen(IDENTIFIER)(12516,12521) + PsiElement(SIMPLE_ID)('false')(12516,12521) + PsiElement(})('}')(12521,12522) + PsiElement(NLS)('\n\n')(12522,12524) + PsiComment(COMMENT)('#Retrieves the specified part of one or more paths (§3.4) or reports on certain characteristics of those paths.')(12524,12635) + PsiElement(NLS)('\n')(12635,12636) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12636,12672) + PowerShellCommandNameImplGen(COMMAND_NAME)(12636,12646) + PowerShellIdentifierImplGen(IDENTIFIER)(12636,12646) + PsiElement(GENERIC_ID_PART)('Split-Path')(12636,12646) + PsiWhiteSpace(' ')(12646,12647) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12647,12652) + PsiElement(CMD_PARAMETER)('-Path')(12647,12652) + PsiWhiteSpace(' ')(12652,12653) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12653,12660) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12653,12660) + PowerShellPathItemImplGen(PATH_ITEM)(12653,12655) + PsiElement(..)('..')(12653,12655) + PsiElement(\)('\')(12655,12656) + PowerShellPathItemImplGen(PATH_ITEM)(12656,12660) + PsiElement(SIMPLE_ID)('Temp')(12656,12660) + PsiWhiteSpace(' ')(12660,12661) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12661,12672) + PsiElement(CMD_PARAMETER)('-IsAbsolute')(12661,12672) + PsiWhiteSpace('\t\t\t\t\t\t')(12672,12678) + PsiComment(COMMENT)('# False')(12678,12685) + PsiElement(NLS)('\n')(12685,12686) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12686,12730) + PowerShellCommandNameImplGen(COMMAND_NAME)(12686,12696) + PowerShellIdentifierImplGen(IDENTIFIER)(12686,12696) + PsiElement(GENERIC_ID_PART)('Split-Path')(12686,12696) + PsiWhiteSpace(' ')(12696,12697) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12697,12702) + PsiElement(CMD_PARAMETER)('-Path')(12697,12702) + PsiWhiteSpace(' ')(12702,12703) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12703,12706) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12703,12706) + PowerShellPathItemImplGen(PATH_ITEM)(12703,12704) + PsiElement(SIMPLE_ID)('J')(12703,12704) + PsiElement(:)(':')(12704,12705) + PsiElement(\)('\')(12705,12706) + PsiElement(,)(',')(12706,12707) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12707,12724) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12707,12724) + PowerShellPathItemImplGen(PATH_ITEM)(12707,12708) + PsiElement(SIMPLE_ID)('J')(12707,12708) + PsiElement(:)(':')(12708,12709) + PsiElement(\)('\')(12709,12710) + PowerShellPathItemImplGen(PATH_ITEM)(12710,12714) + PsiElement(SIMPLE_ID)('main')(12710,12714) + PsiElement(\)('\')(12714,12715) + PowerShellPathItemImplGen(PATH_ITEM)(12715,12719) + PsiElement(SIMPLE_ID)('sub1')(12715,12719) + PsiElement(\)('\')(12719,12720) + PowerShellPathItemImplGen(PATH_ITEM)(12720,12724) + PsiElement(SIMPLE_ID)('sub2')(12720,12724) PsiWhiteSpace(' ')(12724,12725) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12725,12728) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12725,12728) - PowerShellPathItemImplGen(PATH_ITEM)(12725,12726) - PsiElement(SIMPLE_ID)('J')(12725,12726) - PsiElement(:)(':')(12726,12727) - PsiElement(\)('\')(12727,12728) - PsiElement(,)(',')(12728,12729) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12729,12746) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12729,12746) - PowerShellPathItemImplGen(PATH_ITEM)(12729,12730) - PsiElement(SIMPLE_ID)('J')(12729,12730) - PsiElement(:)(':')(12730,12731) - PsiElement(\)('\')(12731,12732) - PowerShellPathItemImplGen(PATH_ITEM)(12732,12736) - PsiElement(SIMPLE_ID)('main')(12732,12736) - PsiElement(\)('\')(12736,12737) - PowerShellPathItemImplGen(PATH_ITEM)(12737,12741) - PsiElement(SIMPLE_ID)('sub1')(12737,12741) - PsiElement(\)('\')(12741,12742) - PowerShellPathItemImplGen(PATH_ITEM)(12742,12746) - PsiElement(SIMPLE_ID)('sub2')(12742,12746) - PsiWhiteSpace(' ')(12746,12747) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12747,12752) - PsiElement(CMD_PARAMETER)('-Leaf')(12747,12752) - PsiWhiteSpace('\t\t\t\t')(12752,12756) - PsiComment(COMMENT)('# "J:\","sub2"')(12756,12770) - PsiElement(NLS)('\n')(12770,12771) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12771,12817) - PowerShellCommandNameImplGen(COMMAND_NAME)(12771,12781) - PowerShellIdentifierImplGen(IDENTIFIER)(12771,12781) - PsiElement(GENERIC_ID_PART)('Split-Path')(12771,12781) - PsiWhiteSpace(' ')(12781,12782) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12782,12787) - PsiElement(CMD_PARAMETER)('-Path')(12782,12787) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12725,12730) + PsiElement(CMD_PARAMETER)('-Leaf')(12725,12730) + PsiWhiteSpace('\t\t\t\t')(12730,12734) + PsiComment(COMMENT)('# "J:\","sub2"')(12734,12748) + PsiElement(NLS)('\n')(12748,12749) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12749,12795) + PowerShellCommandNameImplGen(COMMAND_NAME)(12749,12759) + PowerShellIdentifierImplGen(IDENTIFIER)(12749,12759) + PsiElement(GENERIC_ID_PART)('Split-Path')(12749,12759) + PsiWhiteSpace(' ')(12759,12760) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12760,12765) + PsiElement(CMD_PARAMETER)('-Path')(12760,12765) + PsiWhiteSpace(' ')(12765,12766) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12766,12769) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12766,12769) + PowerShellPathItemImplGen(PATH_ITEM)(12766,12767) + PsiElement(SIMPLE_ID)('J')(12766,12767) + PsiElement(:)(':')(12767,12768) + PsiElement(\)('\')(12768,12769) + PsiElement(,)(',')(12769,12770) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12770,12787) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12770,12787) + PowerShellPathItemImplGen(PATH_ITEM)(12770,12771) + PsiElement(SIMPLE_ID)('J')(12770,12771) + PsiElement(:)(':')(12771,12772) + PsiElement(\)('\')(12772,12773) + PowerShellPathItemImplGen(PATH_ITEM)(12773,12777) + PsiElement(SIMPLE_ID)('main')(12773,12777) + PsiElement(\)('\')(12777,12778) + PowerShellPathItemImplGen(PATH_ITEM)(12778,12782) + PsiElement(SIMPLE_ID)('sub1')(12778,12782) + PsiElement(\)('\')(12782,12783) + PowerShellPathItemImplGen(PATH_ITEM)(12783,12787) + PsiElement(SIMPLE_ID)('sub2')(12783,12787) PsiWhiteSpace(' ')(12787,12788) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12788,12791) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12788,12791) - PowerShellPathItemImplGen(PATH_ITEM)(12788,12789) - PsiElement(SIMPLE_ID)('J')(12788,12789) - PsiElement(:)(':')(12789,12790) - PsiElement(\)('\')(12790,12791) - PsiElement(,)(',')(12791,12792) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12792,12809) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12792,12809) - PowerShellPathItemImplGen(PATH_ITEM)(12792,12793) - PsiElement(SIMPLE_ID)('J')(12792,12793) - PsiElement(:)(':')(12793,12794) - PsiElement(\)('\')(12794,12795) - PowerShellPathItemImplGen(PATH_ITEM)(12795,12799) - PsiElement(SIMPLE_ID)('main')(12795,12799) - PsiElement(\)('\')(12799,12800) - PowerShellPathItemImplGen(PATH_ITEM)(12800,12804) - PsiElement(SIMPLE_ID)('sub1')(12800,12804) - PsiElement(\)('\')(12804,12805) - PowerShellPathItemImplGen(PATH_ITEM)(12805,12809) - PsiElement(SIMPLE_ID)('sub2')(12805,12809) - PsiWhiteSpace(' ')(12809,12810) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12810,12817) - PsiElement(CMD_PARAMETER)('-Parent')(12810,12817) - PsiWhiteSpace('\t\t\t')(12817,12820) - PsiComment(COMMENT)('# "",J:\main\sub1"')(12820,12838) - PsiElement(NLS)('\n')(12838,12839) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12839,12870) - PowerShellCommandNameImplGen(COMMAND_NAME)(12839,12849) - PowerShellIdentifierImplGen(IDENTIFIER)(12839,12849) - PsiElement(GENERIC_ID_PART)('Split-Path')(12839,12849) - PsiWhiteSpace(' ')(12849,12850) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12850,12855) - PsiElement(CMD_PARAMETER)('-Path')(12850,12855) - PsiWhiteSpace(' ')(12855,12856) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12856,12859) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12856,12859) - PowerShellPathItemImplGen(PATH_ITEM)(12856,12857) - PsiElement(SIMPLE_ID)('J')(12856,12857) - PsiElement(:)(':')(12857,12858) - PsiElement(\)('\')(12858,12859) - PsiWhiteSpace(' ')(12859,12860) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12860,12870) - PsiElement(CMD_PARAMETER)('-Qualifier')(12860,12870) - PsiWhiteSpace('\t\t\t\t\t\t\t\t')(12870,12878) - PsiComment(COMMENT)('# "J:"')(12878,12884) - PsiElement(NLS)('\n')(12884,12885) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12885,12936) - PowerShellCommandNameImplGen(COMMAND_NAME)(12885,12895) - PowerShellIdentifierImplGen(IDENTIFIER)(12885,12895) - PsiElement(GENERIC_ID_PART)('Split-Path')(12885,12895) - PsiWhiteSpace(' ')(12895,12896) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12896,12901) - PsiElement(CMD_PARAMETER)('-Path')(12896,12901) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12788,12795) + PsiElement(CMD_PARAMETER)('-Parent')(12788,12795) + PsiWhiteSpace('\t\t\t')(12795,12798) + PsiComment(COMMENT)('# "",J:\main\sub1"')(12798,12816) + PsiElement(NLS)('\n')(12816,12817) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12817,12848) + PowerShellCommandNameImplGen(COMMAND_NAME)(12817,12827) + PowerShellIdentifierImplGen(IDENTIFIER)(12817,12827) + PsiElement(GENERIC_ID_PART)('Split-Path')(12817,12827) + PsiWhiteSpace(' ')(12827,12828) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12828,12833) + PsiElement(CMD_PARAMETER)('-Path')(12828,12833) + PsiWhiteSpace(' ')(12833,12834) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12834,12837) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12834,12837) + PowerShellPathItemImplGen(PATH_ITEM)(12834,12835) + PsiElement(SIMPLE_ID)('J')(12834,12835) + PsiElement(:)(':')(12835,12836) + PsiElement(\)('\')(12836,12837) + PsiWhiteSpace(' ')(12837,12838) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12838,12848) + PsiElement(CMD_PARAMETER)('-Qualifier')(12838,12848) + PsiWhiteSpace('\t\t\t\t\t\t\t\t')(12848,12856) + PsiComment(COMMENT)('# "J:"')(12856,12862) + PsiElement(NLS)('\n')(12862,12863) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(12863,12914) + PowerShellCommandNameImplGen(COMMAND_NAME)(12863,12873) + PowerShellIdentifierImplGen(IDENTIFIER)(12863,12873) + PsiElement(GENERIC_ID_PART)('Split-Path')(12863,12873) + PsiWhiteSpace(' ')(12873,12874) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12874,12879) + PsiElement(CMD_PARAMETER)('-Path')(12874,12879) + PsiWhiteSpace(' ')(12879,12880) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12880,12883) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12880,12883) + PowerShellPathItemImplGen(PATH_ITEM)(12880,12881) + PsiElement(SIMPLE_ID)('J')(12880,12881) + PsiElement(:)(':')(12881,12882) + PsiElement(\)('\')(12882,12883) + PsiElement(,)(',')(12883,12884) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12884,12901) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12884,12901) + PowerShellPathItemImplGen(PATH_ITEM)(12884,12885) + PsiElement(SIMPLE_ID)('J')(12884,12885) + PsiElement(:)(':')(12885,12886) + PsiElement(\)('\')(12886,12887) + PowerShellPathItemImplGen(PATH_ITEM)(12887,12891) + PsiElement(SIMPLE_ID)('main')(12887,12891) + PsiElement(\)('\')(12891,12892) + PowerShellPathItemImplGen(PATH_ITEM)(12892,12896) + PsiElement(SIMPLE_ID)('sub1')(12892,12896) + PsiElement(\)('\')(12896,12897) + PowerShellPathItemImplGen(PATH_ITEM)(12897,12901) + PsiElement(SIMPLE_ID)('sub2')(12897,12901) PsiWhiteSpace(' ')(12901,12902) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12902,12905) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12902,12905) - PowerShellPathItemImplGen(PATH_ITEM)(12902,12903) - PsiElement(SIMPLE_ID)('J')(12902,12903) - PsiElement(:)(':')(12903,12904) - PsiElement(\)('\')(12904,12905) - PsiElement(,)(',')(12905,12906) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(12906,12923) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(12906,12923) - PowerShellPathItemImplGen(PATH_ITEM)(12906,12907) - PsiElement(SIMPLE_ID)('J')(12906,12907) - PsiElement(:)(':')(12907,12908) - PsiElement(\)('\')(12908,12909) - PowerShellPathItemImplGen(PATH_ITEM)(12909,12913) - PsiElement(SIMPLE_ID)('main')(12909,12913) - PsiElement(\)('\')(12913,12914) - PowerShellPathItemImplGen(PATH_ITEM)(12914,12918) - PsiElement(SIMPLE_ID)('sub1')(12914,12918) - PsiElement(\)('\')(12918,12919) - PowerShellPathItemImplGen(PATH_ITEM)(12919,12923) - PsiElement(SIMPLE_ID)('sub2')(12919,12923) - PsiWhiteSpace(' ')(12923,12924) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12924,12936) - PsiElement(CMD_PARAMETER)('-NoQualifier')(12924,12936) - PsiWhiteSpace(' ')(12936,12937) - PsiComment(COMMENT)('# "\","\main\sub1\sub2"')(12937,12960) - PsiElement(NLS)('\n\n')(12960,12962) - PsiComment(COMMENT)('#Saves command output in a file or variable as well as writing it to the pipeline.')(12962,13044) - PsiElement(NLS)('\n')(13044,13045) - PowerShellPipelineTailImplGen(PIPELINE)(13045,13089) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13045,13048) - PsiElement(DEC_INTEGER)('123')(13045,13048) - PsiWhiteSpace(' ')(13048,13049) - PsiElement(|)('|')(13049,13050) - PsiWhiteSpace(' ')(13050,13051) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13051,13089) - PowerShellCommandNameImplGen(COMMAND_NAME)(13051,13061) - PowerShellIdentifierImplGen(IDENTIFIER)(13051,13061) - PsiElement(GENERIC_ID_PART)('Tee-Object')(13051,13061) - PsiWhiteSpace(' ')(13061,13062) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13062,13071) - PsiElement(CMD_PARAMETER)('-FilePath')(13062,13071) - PsiWhiteSpace(' ')(13071,13072) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13072,13089) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13072,13089) - PsiElement(DQ_OPEN)('"')(13072,13073) - PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\Log.txt')(13073,13088) - PsiElement(DQ_CLOSE)('"')(13088,13089) - PsiElement(NLS)('\n')(13089,13090) - PowerShellPipelineTailImplGen(PIPELINE)(13090,13123) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13090,13095) - PsiElement(DQ_OPEN)('"')(13090,13091) - PsiElement(EXPANDABLE_STRING_PART)('red')(13091,13094) - PsiElement(DQ_CLOSE)('"')(13094,13095) - PsiWhiteSpace(' ')(13095,13096) - PsiElement(|)('|')(13096,13097) - PsiWhiteSpace(' ')(13097,13098) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13098,13123) - PowerShellCommandNameImplGen(COMMAND_NAME)(13098,13108) - PowerShellIdentifierImplGen(IDENTIFIER)(13098,13108) - PsiElement(GENERIC_ID_PART)('Tee-Object')(13098,13108) - PsiWhiteSpace(' ')(13108,13109) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13109,13118) - PsiElement(CMD_PARAMETER)('-Variable')(13109,13118) - PsiWhiteSpace(' ')(13118,13119) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13119,13123) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13119,13123) - PsiElement(SIMPLE_ID)('Copy')(13119,13123) - PsiElement(NLS)('\n\n')(13123,13125) - PsiComment(COMMENT)('#Determines whether all elements of a path (§3.4) exist.')(13125,13181) - PsiElement(NLS)('\n')(13181,13182) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13182,13206) - PowerShellCommandNameImplGen(COMMAND_NAME)(13182,13191) - PowerShellIdentifierImplGen(IDENTIFIER)(13182,13191) - PsiElement(GENERIC_ID_PART)('Test-Path')(13182,13191) - PsiWhiteSpace(' ')(13191,13192) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13192,13197) - PsiElement(CMD_PARAMETER)('-Path')(13192,13197) - PsiWhiteSpace(' ')(13197,13198) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13198,13206) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13198,13206) - PowerShellPathItemImplGen(PATH_ITEM)(13198,13199) - PsiElement(SIMPLE_ID)('j')(13198,13199) - PsiElement(:)(':')(13199,13200) - PsiElement(\)('\')(13200,13201) - PowerShellPathItemImplGen(PATH_ITEM)(13201,13206) - PsiElement(SIMPLE_ID)('Files')(13201,13206) - PsiElement(NLS)('\n')(13206,13207) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13207,13252) - PowerShellCommandNameImplGen(COMMAND_NAME)(13207,13216) - PowerShellIdentifierImplGen(IDENTIFIER)(13207,13216) - PsiElement(GENERIC_ID_PART)('Test-Path')(13207,13216) - PsiWhiteSpace(' ')(13216,13217) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13217,13222) - PsiElement(CMD_PARAMETER)('-Path')(13217,13222) - PsiWhiteSpace(' ')(13222,13223) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13223,13243) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13223,13243) - PowerShellPathItemImplGen(PATH_ITEM)(13223,13224) - PsiElement(SIMPLE_ID)('j')(13223,13224) - PsiElement(:)(':')(13224,13225) - PsiElement(\)('\')(13225,13226) - PowerShellPathItemImplGen(PATH_ITEM)(13226,13231) - PsiElement(SIMPLE_ID)('Files')(13226,13231) - PsiElement(\)('\')(13231,13232) - PowerShellPathItemImplGen(PATH_ITEM)(13232,13243) - PsiElement(SIMPLE_ID)('MyFile1')(13232,13239) - PsiElement(.)('.')(13239,13240) - PsiElement(SIMPLE_ID)('txt')(13240,13243) - PsiWhiteSpace(' ')(13243,13244) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13244,13252) - PsiElement(CMD_PARAMETER)('-IsValid')(13244,13252) - PsiElement(NLS)('\n')(13252,13253) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13253,13325) - PowerShellCommandNameImplGen(COMMAND_NAME)(13253,13262) - PowerShellIdentifierImplGen(IDENTIFIER)(13253,13262) - PsiElement(GENERIC_ID_PART)('Test-Path')(13253,13262) - PsiWhiteSpace(' ')(13262,13263) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13263,13268) - PsiElement(CMD_PARAMETER)('-Path')(13263,13268) - PsiWhiteSpace(' ')(13268,13269) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13269,13287) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13269,13287) - PowerShellPathItemImplGen(PATH_ITEM)(13269,13270) - PsiElement(SIMPLE_ID)('j')(13269,13270) - PsiElement(:)(':')(13270,13271) - PsiElement(\)('\')(13271,13272) - PowerShellPathItemImplGen(PATH_ITEM)(13272,13277) - PsiElement(SIMPLE_ID)('Files')(13272,13277) - PsiElement(\)('\')(13277,13278) - PowerShellPathItemImplGen(PATH_ITEM)(13278,13287) - PsiElement(SIMPLE_ID)('File1')(13278,13283) - PsiElement(.)('.')(13283,13284) - PsiElement(SIMPLE_ID)('txt')(13284,13287) - PsiElement(,)(',')(13287,13288) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13288,13306) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13288,13306) - PowerShellPathItemImplGen(PATH_ITEM)(13288,13289) - PsiElement(SIMPLE_ID)('j')(13288,13289) - PsiElement(:)(':')(13289,13290) - PsiElement(\)('\')(13290,13291) - PowerShellPathItemImplGen(PATH_ITEM)(13291,13296) - PsiElement(SIMPLE_ID)('Files')(13291,13296) - PsiElement(\)('\')(13296,13297) - PowerShellPathItemImplGen(PATH_ITEM)(13297,13306) - PsiElement(SIMPLE_ID)('File2')(13297,13302) - PsiElement(.)('.')(13302,13303) - PsiElement(SIMPLE_ID)('txt')(13303,13306) - PsiElement(,)(',')(13306,13307) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13307,13325) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13307,13325) - PowerShellPathItemImplGen(PATH_ITEM)(13307,13308) - PsiElement(SIMPLE_ID)('j')(13307,13308) - PsiElement(:)(':')(13308,13309) - PsiElement(\)('\')(13309,13310) - PowerShellPathItemImplGen(PATH_ITEM)(13310,13315) - PsiElement(SIMPLE_ID)('Files')(13310,13315) - PsiElement(\)('\')(13315,13316) - PowerShellPathItemImplGen(PATH_ITEM)(13316,13325) - PsiElement(SIMPLE_ID)('File3')(13316,13321) - PsiElement(.)('.')(13321,13322) - PsiElement(SIMPLE_ID)('txt')(13322,13325) - PsiElement(NLS)('\n')(13325,13326) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13326,13367) - PowerShellCommandNameImplGen(COMMAND_NAME)(13326,13335) - PowerShellIdentifierImplGen(IDENTIFIER)(13326,13335) - PsiElement(GENERIC_ID_PART)('Test-Path')(13326,13335) - PsiWhiteSpace(' ')(13335,13336) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13336,13341) - PsiElement(CMD_PARAMETER)('-Path')(13336,13341) - PsiWhiteSpace(' ')(13341,13342) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13342,13352) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13342,13352) - PowerShellPathItemImplGen(PATH_ITEM)(13342,13343) - PsiElement(SIMPLE_ID)('j')(13342,13343) - PsiElement(:)(':')(13343,13344) - PsiElement(\)('\')(13344,13345) - PowerShellPathItemImplGen(PATH_ITEM)(13345,13350) - PsiElement(SIMPLE_ID)('Files')(13345,13350) - PsiElement(\)('\')(13350,13351) - PowerShellPathItemImplGen(PATH_ITEM)(13351,13352) - PsiElement(*)('*')(13351,13352) - PsiWhiteSpace(' ')(13352,13353) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13353,13361) - PsiElement(CMD_PARAMETER)('-Exclude')(13353,13361) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(12902,12914) + PsiElement(CMD_PARAMETER)('-NoQualifier')(12902,12914) + PsiWhiteSpace(' ')(12914,12915) + PsiComment(COMMENT)('# "\","\main\sub1\sub2"')(12915,12938) + PsiElement(NLS)('\n\n')(12938,12940) + PsiComment(COMMENT)('#Saves command output in a file or variable as well as writing it to the pipeline.')(12940,13022) + PsiElement(NLS)('\n')(13022,13023) + PowerShellPipelineTailImplGen(PIPELINE)(13023,13067) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13023,13026) + PsiElement(DEC_INTEGER)('123')(13023,13026) + PsiWhiteSpace(' ')(13026,13027) + PsiElement(|)('|')(13027,13028) + PsiWhiteSpace(' ')(13028,13029) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13029,13067) + PowerShellCommandNameImplGen(COMMAND_NAME)(13029,13039) + PowerShellIdentifierImplGen(IDENTIFIER)(13029,13039) + PsiElement(GENERIC_ID_PART)('Tee-Object')(13029,13039) + PsiWhiteSpace(' ')(13039,13040) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13040,13049) + PsiElement(CMD_PARAMETER)('-FilePath')(13040,13049) + PsiWhiteSpace(' ')(13049,13050) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13050,13067) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13050,13067) + PsiElement(DQ_OPEN)('"')(13050,13051) + PsiElement(EXPANDABLE_STRING_PART)('E:\Temp\Log.txt')(13051,13066) + PsiElement(DQ_CLOSE)('"')(13066,13067) + PsiElement(NLS)('\n')(13067,13068) + PowerShellPipelineTailImplGen(PIPELINE)(13068,13101) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13068,13073) + PsiElement(DQ_OPEN)('"')(13068,13069) + PsiElement(EXPANDABLE_STRING_PART)('red')(13069,13072) + PsiElement(DQ_CLOSE)('"')(13072,13073) + PsiWhiteSpace(' ')(13073,13074) + PsiElement(|)('|')(13074,13075) + PsiWhiteSpace(' ')(13075,13076) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13076,13101) + PowerShellCommandNameImplGen(COMMAND_NAME)(13076,13086) + PowerShellIdentifierImplGen(IDENTIFIER)(13076,13086) + PsiElement(GENERIC_ID_PART)('Tee-Object')(13076,13086) + PsiWhiteSpace(' ')(13086,13087) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13087,13096) + PsiElement(CMD_PARAMETER)('-Variable')(13087,13096) + PsiWhiteSpace(' ')(13096,13097) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13097,13101) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13097,13101) + PsiElement(SIMPLE_ID)('Copy')(13097,13101) + PsiElement(NLS)('\n\n')(13101,13103) + PsiComment(COMMENT)('#Determines whether all elements of a path (§3.4) exist.')(13103,13159) + PsiElement(NLS)('\n')(13159,13160) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13160,13184) + PowerShellCommandNameImplGen(COMMAND_NAME)(13160,13169) + PowerShellIdentifierImplGen(IDENTIFIER)(13160,13169) + PsiElement(GENERIC_ID_PART)('Test-Path')(13160,13169) + PsiWhiteSpace(' ')(13169,13170) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13170,13175) + PsiElement(CMD_PARAMETER)('-Path')(13170,13175) + PsiWhiteSpace(' ')(13175,13176) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13176,13184) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13176,13184) + PowerShellPathItemImplGen(PATH_ITEM)(13176,13177) + PsiElement(SIMPLE_ID)('j')(13176,13177) + PsiElement(:)(':')(13177,13178) + PsiElement(\)('\')(13178,13179) + PowerShellPathItemImplGen(PATH_ITEM)(13179,13184) + PsiElement(SIMPLE_ID)('Files')(13179,13184) + PsiElement(NLS)('\n')(13184,13185) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13185,13230) + PowerShellCommandNameImplGen(COMMAND_NAME)(13185,13194) + PowerShellIdentifierImplGen(IDENTIFIER)(13185,13194) + PsiElement(GENERIC_ID_PART)('Test-Path')(13185,13194) + PsiWhiteSpace(' ')(13194,13195) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13195,13200) + PsiElement(CMD_PARAMETER)('-Path')(13195,13200) + PsiWhiteSpace(' ')(13200,13201) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13201,13221) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13201,13221) + PowerShellPathItemImplGen(PATH_ITEM)(13201,13202) + PsiElement(SIMPLE_ID)('j')(13201,13202) + PsiElement(:)(':')(13202,13203) + PsiElement(\)('\')(13203,13204) + PowerShellPathItemImplGen(PATH_ITEM)(13204,13209) + PsiElement(SIMPLE_ID)('Files')(13204,13209) + PsiElement(\)('\')(13209,13210) + PowerShellPathItemImplGen(PATH_ITEM)(13210,13221) + PsiElement(SIMPLE_ID)('MyFile1')(13210,13217) + PsiElement(.)('.')(13217,13218) + PsiElement(SIMPLE_ID)('txt')(13218,13221) + PsiWhiteSpace(' ')(13221,13222) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13222,13230) + PsiElement(CMD_PARAMETER)('-IsValid')(13222,13230) + PsiElement(NLS)('\n')(13230,13231) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13231,13303) + PowerShellCommandNameImplGen(COMMAND_NAME)(13231,13240) + PowerShellIdentifierImplGen(IDENTIFIER)(13231,13240) + PsiElement(GENERIC_ID_PART)('Test-Path')(13231,13240) + PsiWhiteSpace(' ')(13240,13241) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13241,13246) + PsiElement(CMD_PARAMETER)('-Path')(13241,13246) + PsiWhiteSpace(' ')(13246,13247) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13247,13265) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13247,13265) + PowerShellPathItemImplGen(PATH_ITEM)(13247,13248) + PsiElement(SIMPLE_ID)('j')(13247,13248) + PsiElement(:)(':')(13248,13249) + PsiElement(\)('\')(13249,13250) + PowerShellPathItemImplGen(PATH_ITEM)(13250,13255) + PsiElement(SIMPLE_ID)('Files')(13250,13255) + PsiElement(\)('\')(13255,13256) + PowerShellPathItemImplGen(PATH_ITEM)(13256,13265) + PsiElement(SIMPLE_ID)('File1')(13256,13261) + PsiElement(.)('.')(13261,13262) + PsiElement(SIMPLE_ID)('txt')(13262,13265) + PsiElement(,)(',')(13265,13266) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13266,13284) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13266,13284) + PowerShellPathItemImplGen(PATH_ITEM)(13266,13267) + PsiElement(SIMPLE_ID)('j')(13266,13267) + PsiElement(:)(':')(13267,13268) + PsiElement(\)('\')(13268,13269) + PowerShellPathItemImplGen(PATH_ITEM)(13269,13274) + PsiElement(SIMPLE_ID)('Files')(13269,13274) + PsiElement(\)('\')(13274,13275) + PowerShellPathItemImplGen(PATH_ITEM)(13275,13284) + PsiElement(SIMPLE_ID)('File2')(13275,13280) + PsiElement(.)('.')(13280,13281) + PsiElement(SIMPLE_ID)('txt')(13281,13284) + PsiElement(,)(',')(13284,13285) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13285,13303) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13285,13303) + PowerShellPathItemImplGen(PATH_ITEM)(13285,13286) + PsiElement(SIMPLE_ID)('j')(13285,13286) + PsiElement(:)(':')(13286,13287) + PsiElement(\)('\')(13287,13288) + PowerShellPathItemImplGen(PATH_ITEM)(13288,13293) + PsiElement(SIMPLE_ID)('Files')(13288,13293) + PsiElement(\)('\')(13293,13294) + PowerShellPathItemImplGen(PATH_ITEM)(13294,13303) + PsiElement(SIMPLE_ID)('File3')(13294,13299) + PsiElement(.)('.')(13299,13300) + PsiElement(SIMPLE_ID)('txt')(13300,13303) + PsiElement(NLS)('\n')(13303,13304) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13304,13345) + PowerShellCommandNameImplGen(COMMAND_NAME)(13304,13313) + PowerShellIdentifierImplGen(IDENTIFIER)(13304,13313) + PsiElement(GENERIC_ID_PART)('Test-Path')(13304,13313) + PsiWhiteSpace(' ')(13313,13314) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13314,13319) + PsiElement(CMD_PARAMETER)('-Path')(13314,13319) + PsiWhiteSpace(' ')(13319,13320) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13320,13330) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13320,13330) + PowerShellPathItemImplGen(PATH_ITEM)(13320,13321) + PsiElement(SIMPLE_ID)('j')(13320,13321) + PsiElement(:)(':')(13321,13322) + PsiElement(\)('\')(13322,13323) + PowerShellPathItemImplGen(PATH_ITEM)(13323,13328) + PsiElement(SIMPLE_ID)('Files')(13323,13328) + PsiElement(\)('\')(13328,13329) + PowerShellPathItemImplGen(PATH_ITEM)(13329,13330) + PsiElement(*)('*')(13329,13330) + PsiWhiteSpace(' ')(13330,13331) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13331,13339) + PsiElement(CMD_PARAMETER)('-Exclude')(13331,13339) + PsiWhiteSpace(' ')(13339,13340) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13340,13345) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13340,13345) + PsiElement(*)('*')(13340,13341) + PsiElement(.)('.')(13341,13342) + PsiElement(SIMPLE_ID)('txt')(13342,13345) + PsiElement(NLS)('\n')(13345,13346) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13346,13390) + PowerShellCommandNameImplGen(COMMAND_NAME)(13346,13355) + PowerShellIdentifierImplGen(IDENTIFIER)(13346,13355) + PsiElement(GENERIC_ID_PART)('Test-Path')(13346,13355) + PsiWhiteSpace(' ')(13355,13356) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13356,13361) + PsiElement(CMD_PARAMETER)('-Path')(13356,13361) PsiWhiteSpace(' ')(13361,13362) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13362,13367) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13362,13367) - PsiElement(*)('*')(13362,13363) - PsiElement(.)('.')(13363,13364) - PsiElement(SIMPLE_ID)('txt')(13364,13367) - PsiElement(NLS)('\n')(13367,13368) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13368,13412) - PowerShellCommandNameImplGen(COMMAND_NAME)(13368,13377) - PowerShellIdentifierImplGen(IDENTIFIER)(13368,13377) - PsiElement(GENERIC_ID_PART)('Test-Path')(13368,13377) - PsiWhiteSpace(' ')(13377,13378) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13378,13383) - PsiElement(CMD_PARAMETER)('-Path')(13378,13383) - PsiWhiteSpace(' ')(13383,13384) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13384,13392) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13384,13392) - PowerShellPathItemImplGen(PATH_ITEM)(13384,13385) - PsiElement(SIMPLE_ID)('j')(13384,13385) - PsiElement(:)(':')(13385,13386) - PsiElement(\)('\')(13386,13387) - PowerShellPathItemImplGen(PATH_ITEM)(13387,13392) - PsiElement(SIMPLE_ID)('Files')(13387,13392) - PsiWhiteSpace(' ')(13392,13393) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13393,13402) - PsiElement(CMD_PARAMETER)('-PathType')(13393,13402) - PsiWhiteSpace(' ')(13402,13403) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13403,13412) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13403,13412) - PsiElement(SIMPLE_ID)('Container')(13403,13412) - PsiElement(NLS)('\n')(13412,13413) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13413,13443) - PowerShellCommandNameImplGen(COMMAND_NAME)(13413,13422) - PowerShellIdentifierImplGen(IDENTIFIER)(13413,13422) - PsiElement(GENERIC_ID_PART)('Test-Path')(13413,13422) - PsiWhiteSpace(' ')(13422,13423) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13423,13428) - PsiElement(CMD_PARAMETER)('-Path')(13423,13428) - PsiWhiteSpace(' ')(13428,13429) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13429,13438) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13429,13438) - PowerShellPathItemImplGen(PATH_ITEM)(13429,13437) - PsiElement(SIMPLE_ID)('Variable')(13429,13437) - PsiElement(:)(':')(13437,13438) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13438,13443) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13438,13443) - PsiElement(SIMPLE_ID)('Count')(13438,13443) - PsiElement(NLS)('\n')(13443,13444) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13444,13471) - PowerShellCommandNameImplGen(COMMAND_NAME)(13444,13453) - PowerShellIdentifierImplGen(IDENTIFIER)(13444,13453) - PsiElement(GENERIC_ID_PART)('Test-Path')(13444,13453) - PsiWhiteSpace(' ')(13453,13454) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13454,13459) - PsiElement(CMD_PARAMETER)('-Path')(13454,13459) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13362,13370) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13362,13370) + PowerShellPathItemImplGen(PATH_ITEM)(13362,13363) + PsiElement(SIMPLE_ID)('j')(13362,13363) + PsiElement(:)(':')(13363,13364) + PsiElement(\)('\')(13364,13365) + PowerShellPathItemImplGen(PATH_ITEM)(13365,13370) + PsiElement(SIMPLE_ID)('Files')(13365,13370) + PsiWhiteSpace(' ')(13370,13371) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13371,13380) + PsiElement(CMD_PARAMETER)('-PathType')(13371,13380) + PsiWhiteSpace(' ')(13380,13381) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13381,13390) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13381,13390) + PsiElement(SIMPLE_ID)('Container')(13381,13390) + PsiElement(NLS)('\n')(13390,13391) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13391,13421) + PowerShellCommandNameImplGen(COMMAND_NAME)(13391,13400) + PowerShellIdentifierImplGen(IDENTIFIER)(13391,13400) + PsiElement(GENERIC_ID_PART)('Test-Path')(13391,13400) + PsiWhiteSpace(' ')(13400,13401) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13401,13406) + PsiElement(CMD_PARAMETER)('-Path')(13401,13406) + PsiWhiteSpace(' ')(13406,13407) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13407,13416) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13407,13416) + PowerShellPathItemImplGen(PATH_ITEM)(13407,13415) + PsiElement(SIMPLE_ID)('Variable')(13407,13415) + PsiElement(:)(':')(13415,13416) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13416,13421) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13416,13421) + PsiElement(SIMPLE_ID)('Count')(13416,13421) + PsiElement(NLS)('\n')(13421,13422) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13422,13449) + PowerShellCommandNameImplGen(COMMAND_NAME)(13422,13431) + PowerShellIdentifierImplGen(IDENTIFIER)(13422,13431) + PsiElement(GENERIC_ID_PART)('Test-Path')(13422,13431) + PsiWhiteSpace(' ')(13431,13432) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13432,13437) + PsiElement(CMD_PARAMETER)('-Path')(13432,13437) + PsiWhiteSpace(' ')(13437,13438) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13438,13447) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13438,13447) + PowerShellPathItemImplGen(PATH_ITEM)(13438,13446) + PsiElement(SIMPLE_ID)('Function')(13438,13446) + PsiElement(:)(':')(13446,13447) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13447,13449) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13447,13449) + PsiElement(SIMPLE_ID)('F1')(13447,13449) + PsiElement(NLS)('\n')(13449,13450) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13450,13474) + PowerShellCommandNameImplGen(COMMAND_NAME)(13450,13459) + PowerShellIdentifierImplGen(IDENTIFIER)(13450,13459) + PsiElement(GENERIC_ID_PART)('Test-Path')(13450,13459) PsiWhiteSpace(' ')(13459,13460) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13460,13469) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13460,13469) - PowerShellPathItemImplGen(PATH_ITEM)(13460,13468) - PsiElement(SIMPLE_ID)('Function')(13460,13468) - PsiElement(:)(':')(13468,13469) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13469,13471) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13469,13471) - PsiElement(SIMPLE_ID)('F1')(13469,13471) - PsiElement(NLS)('\n')(13471,13472) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13472,13496) - PowerShellCommandNameImplGen(COMMAND_NAME)(13472,13481) - PowerShellIdentifierImplGen(IDENTIFIER)(13472,13481) - PsiElement(GENERIC_ID_PART)('Test-Path')(13472,13481) - PsiWhiteSpace(' ')(13481,13482) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13482,13487) - PsiElement(CMD_PARAMETER)('-Path')(13482,13487) - PsiWhiteSpace(' ')(13487,13488) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13488,13492) - PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13488,13492) - PowerShellPathItemImplGen(PATH_ITEM)(13488,13491) - PsiElement(SIMPLE_ID)('Env')(13488,13491) - PsiElement(:)(':')(13491,13492) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13492,13496) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13492,13496) - PsiElement(SIMPLE_ID)('Path')(13492,13496) - PsiElement(NLS)('\n\n')(13496,13498) - PsiComment(COMMENT)('#Creates a filter to determine which input objects are be passed along a command pipeline.')(13498,13588) - PsiElement(NLS)('\n')(13588,13589) - PowerShellPipelineTailImplGen(PIPELINE)(13589,13655) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13589,13617) - PowerShellCommandNameImplGen(COMMAND_NAME)(13589,13602) - PowerShellIdentifierImplGen(IDENTIFIER)(13589,13602) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13589,13602) - PsiWhiteSpace(' ')(13602,13603) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13603,13617) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13603,13617) - PsiElement(DQ_OPEN)('"')(13603,13604) - PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13604,13616) - PsiElement(DQ_CLOSE)('"')(13616,13617) - PsiWhiteSpace(' ')(13617,13618) - PsiElement(|)('|')(13618,13619) - PsiWhiteSpace(' ')(13619,13620) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13620,13655) - PowerShellCommandNameImplGen(COMMAND_NAME)(13620,13632) - PowerShellIdentifierImplGen(IDENTIFIER)(13620,13632) - PsiElement(GENERIC_ID_PART)('Where-Object')(13620,13632) - PsiWhiteSpace(' ')(13632,13633) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13633,13655) - PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(13633,13655) - PsiElement({)('{')(13633,13634) - PsiWhiteSpace(' ')(13634,13635) - PowerShellBlockBodyImplGen(BLOCK_BODY)(13635,13653) - PowerShellComparisonExpressionImplGen(COMPARISON_EXPRESSION)(13635,13653) - PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(13635,13644) - PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(13635,13637) - PsiElement($)('$')(13635,13636) - PowerShellIdentifierImplGen(IDENTIFIER)(13636,13637) - PsiElement(SIMPLE_ID)('_')(13636,13637) - PsiElement(.)('.')(13637,13638) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13638,13644) - PsiElement(SIMPLE_ID)('Length')(13638,13644) - PsiWhiteSpace(' ')(13644,13645) - PsiElement(OP_C)('-le')(13645,13648) - PsiWhiteSpace(' ')(13648,13649) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13649,13653) - PsiElement(DEC_INTEGER)('1000')(13649,13653) - PsiWhiteSpace(' ')(13653,13654) - PsiElement(})('}')(13654,13655) - PsiElement(NLS)('\n')(13655,13656) - PowerShellPipelineTailImplGen(PIPELINE)(13656,13712) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13656,13684) - PowerShellCommandNameImplGen(COMMAND_NAME)(13656,13669) - PowerShellIdentifierImplGen(IDENTIFIER)(13656,13669) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13656,13669) - PsiWhiteSpace(' ')(13669,13670) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13670,13684) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13670,13684) - PsiElement(DQ_OPEN)('"')(13670,13671) - PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13671,13683) - PsiElement(DQ_CLOSE)('"')(13683,13684) - PsiWhiteSpace(' ')(13684,13685) - PsiElement(|)('|')(13685,13686) - PsiWhiteSpace(' ')(13686,13687) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13687,13712) - PowerShellCommandNameImplGen(COMMAND_NAME)(13687,13699) - PowerShellIdentifierImplGen(IDENTIFIER)(13687,13699) - PsiElement(GENERIC_ID_PART)('Where-Object')(13687,13699) - PsiWhiteSpace(' ')(13699,13700) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13700,13706) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13700,13706) - PsiElement(SIMPLE_ID)('Length')(13700,13706) - PsiWhiteSpace(' ')(13706,13707) - PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13707,13710) - PsiElement(OP_C)('–eq')(13707,13710) - PsiWhiteSpace(' ')(13710,13711) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13711,13712) - PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13711,13712) - PsiElement(DEC_INTEGER)('0')(13711,13712) - PsiElement(NLS)('\n')(13712,13713) - PowerShellPipelineTailImplGen(PIPELINE)(13713,13767) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13713,13741) - PowerShellCommandNameImplGen(COMMAND_NAME)(13713,13726) - PowerShellIdentifierImplGen(IDENTIFIER)(13713,13726) - PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13713,13726) - PsiWhiteSpace(' ')(13726,13727) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13727,13741) - PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13727,13741) - PsiElement(DQ_OPEN)('"')(13727,13728) - PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13728,13740) - PsiElement(DQ_CLOSE)('"')(13740,13741) - PsiWhiteSpace(' ')(13741,13742) - PsiElement(|)('|')(13742,13743) - PsiWhiteSpace(' ')(13743,13744) - PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13744,13767) - PowerShellCommandNameImplGen(COMMAND_NAME)(13744,13756) - PowerShellIdentifierImplGen(IDENTIFIER)(13744,13756) - PsiElement(GENERIC_ID_PART)('Where-Object')(13744,13756) - PsiWhiteSpace(' ')(13756,13757) - PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13757,13767) - PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13757,13767) - PsiElement(SIMPLE_ID)('IsReadOnly')(13757,13767) \ No newline at end of file + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13460,13465) + PsiElement(CMD_PARAMETER)('-Path')(13460,13465) + PsiWhiteSpace(' ')(13465,13466) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13466,13470) + PowerShellPathExpressionImplGen(PATH_EXPRESSION)(13466,13470) + PowerShellPathItemImplGen(PATH_ITEM)(13466,13469) + PsiElement(SIMPLE_ID)('Env')(13466,13469) + PsiElement(:)(':')(13469,13470) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13470,13474) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13470,13474) + PsiElement(SIMPLE_ID)('Path')(13470,13474) + PsiElement(NLS)('\n\n')(13474,13476) + PsiComment(COMMENT)('#Creates a filter to determine which input objects are be passed along a command pipeline.')(13476,13566) + PsiElement(NLS)('\n')(13566,13567) + PowerShellPipelineTailImplGen(PIPELINE)(13567,13633) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13567,13595) + PowerShellCommandNameImplGen(COMMAND_NAME)(13567,13580) + PowerShellIdentifierImplGen(IDENTIFIER)(13567,13580) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13567,13580) + PsiWhiteSpace(' ')(13580,13581) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13581,13595) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13581,13595) + PsiElement(DQ_OPEN)('"')(13581,13582) + PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13582,13594) + PsiElement(DQ_CLOSE)('"')(13594,13595) + PsiWhiteSpace(' ')(13595,13596) + PsiElement(|)('|')(13596,13597) + PsiWhiteSpace(' ')(13597,13598) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13598,13633) + PowerShellCommandNameImplGen(COMMAND_NAME)(13598,13610) + PowerShellIdentifierImplGen(IDENTIFIER)(13598,13610) + PsiElement(GENERIC_ID_PART)('Where-Object')(13598,13610) + PsiWhiteSpace(' ')(13610,13611) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13611,13633) + PowerShellScriptBlockExpressionImplGen(SCRIPT_BLOCK_EXPRESSION)(13611,13633) + PsiElement({)('{')(13611,13612) + PsiWhiteSpace(' ')(13612,13613) + PowerShellBlockBodyImplGen(BLOCK_BODY)(13613,13631) + PowerShellComparisonExpressionImplGen(COMPARISON_EXPRESSION)(13613,13631) + PowerShellMemberAccessExpressionImplGen(MEMBER_ACCESS_EXPRESSION)(13613,13622) + PowerShellTargetVariableExpressionImplGen(TARGET_VARIABLE_EXPRESSION)(13613,13615) + PsiElement($)('$')(13613,13614) + PowerShellIdentifierImplGen(IDENTIFIER)(13614,13615) + PsiElement(SIMPLE_ID)('_')(13614,13615) + PsiElement(.)('.')(13615,13616) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13616,13622) + PsiElement(SIMPLE_ID)('Length')(13616,13622) + PsiWhiteSpace(' ')(13622,13623) + PsiElement(OP_C)('-le')(13623,13626) + PsiWhiteSpace(' ')(13626,13627) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13627,13631) + PsiElement(DEC_INTEGER)('1000')(13627,13631) + PsiWhiteSpace(' ')(13631,13632) + PsiElement(})('}')(13632,13633) + PsiElement(NLS)('\n')(13633,13634) + PowerShellPipelineTailImplGen(PIPELINE)(13634,13690) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13634,13662) + PowerShellCommandNameImplGen(COMMAND_NAME)(13634,13647) + PowerShellIdentifierImplGen(IDENTIFIER)(13634,13647) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13634,13647) + PsiWhiteSpace(' ')(13647,13648) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13648,13662) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13648,13662) + PsiElement(DQ_OPEN)('"')(13648,13649) + PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13649,13661) + PsiElement(DQ_CLOSE)('"')(13661,13662) + PsiWhiteSpace(' ')(13662,13663) + PsiElement(|)('|')(13663,13664) + PsiWhiteSpace(' ')(13664,13665) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13665,13690) + PowerShellCommandNameImplGen(COMMAND_NAME)(13665,13677) + PowerShellIdentifierImplGen(IDENTIFIER)(13665,13677) + PsiElement(GENERIC_ID_PART)('Where-Object')(13665,13677) + PsiWhiteSpace(' ')(13677,13678) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13678,13684) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13678,13684) + PsiElement(SIMPLE_ID)('Length')(13678,13684) + PsiWhiteSpace(' ')(13684,13685) + PowerShellCommandParameterImplGen(COMMAND_PARAMETER)(13685,13688) + PsiElement(OP_C)('–eq')(13685,13688) + PsiWhiteSpace(' ')(13688,13689) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13689,13690) + PowerShellIntegerLiteralExpressionImplGen(INTEGER_LITERAL_EXPRESSION)(13689,13690) + PsiElement(DEC_INTEGER)('0')(13689,13690) + PsiElement(NLS)('\n')(13690,13691) + PowerShellPipelineTailImplGen(PIPELINE)(13691,13745) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13691,13719) + PowerShellCommandNameImplGen(COMMAND_NAME)(13691,13704) + PowerShellIdentifierImplGen(IDENTIFIER)(13691,13704) + PsiElement(GENERIC_ID_PART)('Get-ChildItem')(13691,13704) + PsiWhiteSpace(' ')(13704,13705) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13705,13719) + PowerShellStringLiteralExpressionImplGen(STRING_LITERAL_EXPRESSION)(13705,13719) + PsiElement(DQ_OPEN)('"')(13705,13706) + PsiElement(EXPANDABLE_STRING_PART)('E:\Files\*.*')(13706,13718) + PsiElement(DQ_CLOSE)('"')(13718,13719) + PsiWhiteSpace(' ')(13719,13720) + PsiElement(|)('|')(13720,13721) + PsiWhiteSpace(' ')(13721,13722) + PowerShellCommandCallExpressionImplGen(COMMAND_CALL_EXPRESSION)(13722,13745) + PowerShellCommandNameImplGen(COMMAND_NAME)(13722,13734) + PowerShellIdentifierImplGen(IDENTIFIER)(13722,13734) + PsiElement(GENERIC_ID_PART)('Where-Object')(13722,13734) + PsiWhiteSpace(' ')(13734,13735) + PowerShellCommandArgumentImplGen(COMMAND_ARGUMENT)(13735,13745) + PowerShellReferenceIdentifierImplGen(REFERENCE_IDENTIFIER)(13735,13745) + PsiElement(SIMPLE_ID)('IsReadOnly')(13735,13745)