=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== libdatetime-format-builder-perl-0.8300/README.md-253- libdatetime-format-builder-perl-0.8300/README.md:254:# EXECUTION FLOW libdatetime-format-builder-perl-0.8300/README.md-255- ############################################## libdatetime-format-builder-perl-0.8300/README.md-266- libdatetime-format-builder-perl-0.8300/README.md:267:1. _preprocess_ is called. It's given `$string` and a reference to the parsing libdatetime-format-builder-perl-0.8300/README.md:268:workspace hash, which we'll call `$p`. At this point, `$p` is empty. The libdatetime-format-builder-perl-0.8300/README.md:269:return value is used as `$date` for the rest of this single parser. Anything libdatetime-format-builder-perl-0.8300/README.md:270:put in `$p` is also used for the rest of this single parser. libdatetime-format-builder-perl-0.8300/README.md-271-2. _regex_ is applied. libdatetime-format-builder-perl-0.8300/README.md:272:3. If _regex_ **did not** match, then _on\_fail_ is called (and is given `$date` libdatetime-format-builder-perl-0.8300/README.md-273-and also _label_ if it was defined). Any return value is ignored and the next ############################################## libdatetime-format-builder-perl-0.8300/README.md-279- libdatetime-format-builder-perl-0.8300/README.md:280:4. _postprocess_ is called with `$date` and a filled out `$p`. The return libdatetime-format-builder-perl-0.8300/README.md-281-value is taken as a indication of whether the parse was a success or not. If ############################################## libdatetime-format-builder-perl-0.8300/README.md-297- libdatetime-format-builder-perl-0.8300/README.md:298:1. The overall _preprocess_or is called and is given `$string` and the hashref libdatetime-format-builder-perl-0.8300/README.md:299:`$p` (identically to the per parser _preprocess_ mentioned in the previous libdatetime-format-builder-perl-0.8300/README.md-300-flow). libdatetime-format-builder-perl-0.8300/README.md-301- libdatetime-format-builder-perl-0.8300/README.md:302: If the callback modifies `$p` then a **copy** of `$p` is given to each of the libdatetime-format-builder-perl-0.8300/README.md-303- individual parsers. This is so parsers won't accidentally pollute each other's ############################################## libdatetime-format-builder-perl-0.8300/README.md-307-single parser flow (see the previous section) is followed, and the parser is libdatetime-format-builder-perl-0.8300/README.md:308:given a copy of `$p` and the return value of the overall _preprocess_or as libdatetime-format-builder-perl-0.8300/README.md:309:`$date`. libdatetime-format-builder-perl-0.8300/README.md-310- ############################################## libdatetime-format-builder-perl-0.8300/README.md-385- libdatetime-format-builder-perl-0.8300/README.md:386: Alternatively, call `$DateTime::Format::Builder::verbose` with the relevant libdatetime-format-builder-perl-0.8300/README.md-387- value. Whichever value is given more recently is adhered to. ############################################## libdatetime-format-builder-perl-0.8300/README.md-400- libdatetime-format-builder-perl-0.8300/README.md:401: **version** is also optional and specifies the value to give `$VERSION` in the libdatetime-format-builder-perl-0.8300/README.md-402- class. It's generally not recommended unless you're combining with the