e5a3de575f
Previously we were looking for a global factory call that looks like: ```ts (factory((global.ng = global.ng || {}, global.ng.common = {}), global.ng.core))" ``` but in some cases it looks like: ```ts (global = global || self, factory((global.ng = global.ng || {}, global.ng.common = {}), global.ng.core))" ``` Note the `global = global || self` at the start of the statement. This commit makes the test when finding the global factory function call resilient to being in a comma list. PR Close #32709