Transpilers/Inline/Inline.Rust.psx.ps1
<# .SYNOPSIS Rust Inline PipeScript Transpiler. .DESCRIPTION Transpiles Rust with Inline PipeScript into Rust. Multiline comments with /*{}*/ will be treated as blocks of PipeScript. #> [ValidateScript({ $cmdInfo = $_ if ($cmdInfo.Source -match '\.rs$') { return $true } return $false })] param( # The command information. This will include the path to the file. [Parameter(Mandatory,ValueFromPipeline)] $CommandInfo ) begin { # We start off by declaring a number of regular expressions: $startComment = '/\*' # * Start Comments ```\*``` $endComment = '\*/' # * End Comments ```/*``` $Whitespace = '[\s\n\r]{0,}' # * StartRegex ```$IgnoredContext + $StartComment + '{' + $Whitespace``` $startRegex = "(?<PSStart>${startComment}\{$Whitespace)" # * EndRegex ```$whitespace + '}' + $EndComment + $ignoredContext``` $endRegex = "(?<PSEnd>$Whitespace\}${endComment})" $sourcePattern = [Regex]::New("(?>$( $startRegex, $endRegex -join ([Environment]::NewLine + '|' + [Environment]::NewLine) ))", "IgnoreCase, IgnorePatternWhitespace", "00:00:05") } process { $fileInfo = $commandInfo.Source -as [IO.FileInfo] $fileText = [IO.File]::ReadAllText($fileInfo.Fullname) .>PipeScript.Inline -SourceFile $CommandInfo.Source -SourceText $fileText -SourcePattern $sourcePattern } |