PipeScript
PipeScript copied to clipboard
A Metaprogramming Language for PowerShell (and anything else)
ScriptAnalyzer has a nasty habit of erroring out after too long, making what was already a relatively useless signal into actually painful noise. This _may_ be due to the fact...
Aliased to .GetCollectionAndIndex
In order to make the PowerShell AST and the C# AST have similar capabilities within PipeScript, we want to add a few more extended properties and methods: * [ ]...
PowerShell has a great and underused concept of a filter. Filters accept input and any number of arguments, and run once per piped in object. They tend to be both...
Many languages have the concept of a control, so this would be a fairly useful anchor point.
This should any module work with Docker. * [ ] #968 * [ ] #1078 * [ ] `PipeScript.Module.Container.Start` should attempt to start a container * [ ] `PipeScript.Module.Container.Stop` should...
Templates are already predominately typed by their Language (i.e. `Template.A.html`) This lets us do something like: ~~~PowerShell $psLanguages.HTML.Templates ~~~ So far, so good. The Templates object is already decorated. We...