This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ExampleFunction(i = 1) { | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @hint I search for patterns within a given | |
* @output false | |
* | |
* @target I am the target struct being searched. | |
* @pattern I am the pattern being searched. | |
* @scope I am the scope of the search: one or all. | |
* @path The path to the current target (for recursive calling). NOTE: This is used internally for recursion - this is NOT an expected argument to be passed in by the user. | |
* | |
* Reference: http://www.bennadel.com/blog/1635-restructfindvalue-adding-regular-expression-searching-to-structfindvalue.htm |