I was looking at the posh-git code and I found the author doing this.
function script:gitCmdOperations($command, $filter)
Needless to say I didn't find anything on google about this.
What I am looking for is why he used the script: part.
|
I was looking at the posh-git code and I found the author doing this.
Needless to say I didn't find anything on google about this. What I am looking for is why he used the script: part. |
|||
|
|
|
It defines the function's scope to be the script scope. See: |
|||||||||||||
|
|
It's a way to create a function at a specific scope (using scope modifier). Take this for example:
In the above example , function inner is only available inside the outer function (local scope). What if you wanted to create inner in the global scope, so when your script has finished, the inner function will still be available? You use the scope modifier:
Check the about_Scopes help files for more information |
||||
|
|