===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2294- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2295: * `$injector` is used to retrieve object instances as defined by
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2296- * {@link AUTO.$provide provider}, instantiate types, invoke methods,
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2332- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2333: * ## `$inject` Annotation
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2334: * By adding a `$inject` property onto a function the injection parameters can be specified.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2335- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2357- * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2358: * Invoke the method and supply the method arguments from the `$injector`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2359- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2362- * @param {Object=} locals Optional object. If preset then any argument names are read from this object first, before
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2363: *   the `$injector` is consulted.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2364- * @returns {*} the value returned by the invoked `fn` function.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2376- * @param {Object=} locals Optional object. If preset then any argument names are read from this object first, before
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2377: *   the `$injector` is consulted.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2378- * @returns {Object} new instance of `Type`.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2407- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2408: * # The `$injector` property
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2409- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2410: * If a function has an `$inject` property and its value is an array of strings, then the strings represent names of
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2411- * services to be injected into the function.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2425- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2426: * It is often desirable to inline Injected functions and that's when setting the `$inject` property is very
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2427- * inconvenient. In these situations using the array notation to specify the dependencies in a way that survives
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2468- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2469: * Use `$provide` to register new providers with the `$injector`. The providers are the factories for the instance.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2470- * The providers share the same name as the instance they create with the `Provider` suffixed to them.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2471- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2472: * A provider is an object with a `$get()` method. The injector calls the `$get` method to create a new instance of
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2473- * a service. The Provider can have additional methods which would allow for configuration of the provider.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2523- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2524: *   - `Object`: then it should have a `$get` method. The `$get` method will be invoked using
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2525- *               {@link AUTO.$injector#invoke $injector.invoke()} when an instance needs to be created.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2537- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2538: * A short hand for configuring services if only `$get` method is required.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2539- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2541- * @param {function()} $getFn The $getFn for the instance creation. Internally this is a short hand for
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2542: * `$provide.provider(name, {$get: $getFn})`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2543- * @returns {Object} registered provider instance
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2566- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2567: * A short hand for configuring services if the `$get` method is a constant.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2568- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2605- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2606: *    * `$delegate` - The original service instance, which can be monkey patched, configured,
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2607- *      decorated or delegated to.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2825- * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2826: * When called, it checks current value of `$location.hash()` and scroll to related element,
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2827- * according to rules specified in
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2829- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2830: * It also watches the `$location.hash()` and scroll whenever it changes to match any anchor.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2831: * This can be disabled by calling `$anchorScrollProvider.disableAutoScrolling()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2832- */
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2894- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:2895: * For tests we provide {@link ngMock.$browser mock implementation} of the `$browser`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-2896- * service, which can be used for convenient testing of the application without the interaction with
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3193-   * @param {number=} [delay=0] of milliseconds to defer the function execution.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:3194:   * @returns {*} DeferId that can be used to cancel the task via `$browser.defer.cancel()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3195-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3200-   * `setTimeout` in tests, the fns are queued in an array, which can be programmatically flushed
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:3201:   * via `$browser.defer.flush()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3202-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3222-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:3223:   * @param {*} deferId Token returned by the `$browser.defer` function.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-3224-   * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfuly canceled.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4596-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:4597:     *    * check if a controller with given name is registered via `$controllerProvider`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4598-     *    * check if evaluating the string on the current scope returns a constructor
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4604-     * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:4605:     * `$controller` service is responsible for instantiating controllers.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4606-     *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4647- * Any uncaught exception in angular expressions is delegated to this service.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:4648: * The default implementation simply delegates to `$log.error` which logs it into
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-4649- * the browser console.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5094-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5095:   * Change path, search and hash, when called with parameter and return `$location`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5096-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5163-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5164:   * Change path when called with parameter and return `$location`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5165-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5185-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5186:   * Change search part when called with parameter and return `$location`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5187-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5221-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5222:   * Change hash fragment when called with parameter and return `$location`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5223-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5234-   * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5235:   * If called, all changes to $location during current `$digest` will be replacing current history
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5236-   * record, instead of adding new one.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5311- * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:5312: * Use the `$locationProvider` to configure how the application deep linking paths are stored.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-5313- */
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6449- * <pre>
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6450: *   // for the purpose of this example let's assume that variables `$q` and `scope` are
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6451- *   // available in the current lexical scope (they could have been injected or passed in).
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6490- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6491: * A new instance of deferred is constructed by calling `$q.defer()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6492- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6498- * - `resolve(value)` – resolves the derived promise with the `value`. If the value is a rejection
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6499: *   constructed via `$q.reject`, the promise will be rejected instead.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6500- * - `reject(reason)` – rejects the derived promise with the `reason`. This is equivalent to
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6501: *   resolving it with a rejection constructed via `$q.reject`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6502- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6840-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6841:   * @param {string} path Route path (matched against `$location.path`). If `$location.path`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6842-   *    contains redundant trailing slash or is missing one, the route will still match and the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6843:   *    `$location.path` will be updated to add or drop the trailing slash to exacly match the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6844-   *    route definition.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6845:   * @param {Object} route Mapping information to be assigned to `$route.current` on route
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6846-   *    match.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6861-   *      resolved and converted to a value before the controller is instantiated and the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6862:   *      `$afterRouteChange` event is fired. The map object is:
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6863-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6875-   *      - `{Object.<string>}` - route parameters extracted from the current
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6876:   *        `$location.path()` by applying the current route templateUrl.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6877:   *      - `{string}` - current `$location.path()`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6878:   *      - `{Object}` - current `$location.search()`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6879-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6880-   *      The custom `redirectTo` function is expected to return a string which will be used
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6881:   *      to update `$location.path()` and `$location.search()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6882-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6886-   *      If the option is set to `false` and url in the browser changes, then
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6887:   *      `$routeUpdate` event is broadcasted on the root scope.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6888-   *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6891-   * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6892:   * Adds a new route definition to the `$route` service.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6893-   */
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6917-   *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6918:   * @param {Object} params Mapping information to be assigned to `$route.current`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6919-   * @returns {Object} self
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6943-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6944:     *     - `$scope` - The current route scope.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6945:     *     - `$template` - The current route template HTML.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6946-     *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6950-     * Is used for deep-linking URLs to controllers and views (HTML partials).
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6951:     * It watches `$location.url()` and tries to map the path to an existing route definition.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6952-     *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6954-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6955:     * The `$route` service is typically used in conjunction with {@link ng.directive:ngView ngView}
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6956-     * directive and the {@link ng.$routeParams $routeParams} service.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6958-     * @example
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:6959:       This example shows how changing the URL hash causes the `$route` to match a route against the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-6960-       URL, and the `ngView` pulls in the partial.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7064-     * defined in `resolve` route property. Once  all of the dependencies are resolved
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7065:     * `$routeChangeSuccess` is fired.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7066-     *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7119-           * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7120:           * Causes `$route` service to reload the current route even if
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7121-           * {@link ng.$location $location} hasn't changed.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7284- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7285: * The service guarantees that the identity of the `$routeParams` object will remain unchanged
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7286- * (but its properties will likely change) even when a route change occurs.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7621-       * Because a {@link ng.$rootScope.Scope#$watch watcher}'s listener can change the model, the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7622:       * `$digest()` keeps calling the {@link ng.$rootScope.Scope#$watch watchers} until no more listeners are
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7623-       * firing. This means that it is possible to get into an infinite loop. This function will throw
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7625-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7626:       * Usually you don't call `$digest()` directly in
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7627-       * {@link ng.directive:ngController controllers} or in
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7629-       * Instead a call to {@link ng.$rootScope.Scope#$apply $apply()} (typically from within a
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7630:       * {@link ng.$compileProvider#directive directives}) will force a `$digest()`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7631-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7632:       * If you want to be notified whenever `$digest()` is called,
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7633-       * you can register a `watchExpression` function  with {@link ng.$rootScope.Scope#$watch $watch()}
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7635-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7636:       * You may have a need to call `$digest()` from within unit-tests, to simulate the scope
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7637-       * life-cycle.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7759-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7760:       * The `$destroy()` is usually used by directives such as
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7761-       * {@link ng.directive:ngRepeat ngRepeat} for managing the
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7763-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7764:       * Just before a scope is destroyed a `$destroy` event is broadcasted on this scope.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7765:       * Application code can register a `$destroy` event handler that will give it chance to
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7766-       * perform any necessary cleanup.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7819-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7820:       * The `$evalAsync` makes no guarantees as to when the `expression` will be executed, only that:
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7821-       *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7845-       * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7846:       * `$apply()` is used to execute an expression in angular from outside of the angular framework.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7847-       * (For example from browser DOM events, setTimeout, XHR or third party libraries).
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7853-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7854:       * # Pseudo-Code of `$apply()`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7855-       * <pre>
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7867-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7868:       * Scope's `$apply()` method transitions through the following stages:
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7869-       *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7918-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7919:       *   - `targetScope` - {Scope}: the scope on which the event was `$emit`-ed or `$broadcast`-ed.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7920-       *   - `currentScope` - {Scope}: the current scope which is handling the event.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7922-       *   - `stopPropagation` - {function=}: calling `stopPropagation` function will cancel further event propagation
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7923:       *     (available only for events that were `$emit`-ed).
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7924-       *   - `preventDefault` - {function}: calling `preventDefault` sets `defaultPrevented` flag to true.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7949-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:7950:       * The event life cycle starts at the scope on which `$emit` was called. All
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-7951-       * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get notified.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8007-       *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8008:       * The event life cycle starts at the scope on which `$broadcast` was called. All
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8009-       * {@link ng.$rootScope.Scope#$on listeners} listening for `name` event on this scope get notified.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8105-    var eventSupport = {},
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8106:        android = int((/android (\d+)/.exec(lowercase($window.navigator.userAgent)) || [])[1]);
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8107-
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8143- * it is a global variable. In angular we always refer to it through the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8144: * `$window` service, so it may be overriden, removed or mocked for testing.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8145- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8306-     * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8307:     * The `$http` service is a core Angular service that facilitates communication with the remote
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8308-     * HTTP servers via browser's {@link https://developer.mozilla.org/en/xmlhttprequest
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8310-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8311:     * For unit testing applications that use `$http` service, see
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8312-     * {@link ngMock.$httpBackend $httpBackend mock}.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8322-     * # General usage
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8323:     * The `$http` service is a function which takes a single argument — a configuration object —
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8324-     * that is used to generate an http request and returns  a {@link ng.$q promise}
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8369-     * The $http service will automatically add certain http headers to all requests. These defaults
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8370:     * can be fully configured by accessing the `$httpProvider.defaults.headers` configuration
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8371-     * object, which currently contains this default configuration:
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8372-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8373:     * - `$httpProvider.defaults.headers.common` (headers that are common for all requests):
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8374-     *   - `Accept: application/json, text/plain, * / *`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8375-     *   - `X-Requested-With: XMLHttpRequest`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8376:     * - `$httpProvider.defaults.headers.post`: (header defaults for HTTP POST requests)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8377-     *   - `Content-Type: application/json`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8378:     * - `$httpProvider.defaults.headers.put` (header defaults for HTTP PUT requests)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8379-     *   - `Content-Type: application/json`
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8383-     * with name equal to the lower-cased http method name, e.g.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8384:     * `$httpProvider.defaults.headers.get['My-Header']='value'`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8385-     *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8386:     * Additionally, the defaults can be set at runtime via the `$http.defaults` object in a similar
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8387-     * fassion as described above.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8406-     * and/or `transformResponse` properties of the config object. To globally override the default
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8407:     * transforms, override the `$httpProvider.defaults.transformRequest` and
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8408:     * `$httpProvider.defaults.transformResponse` properties of the `$httpProvider`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8409-     *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8413-     * To enable caching set the configuration property `cache` to `true`. When the cache is
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8414:     * enabled, `$http` stores the response from the server in local cache. Next time the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8415-     * response is served from the cache without sending a request to the server.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8436-     * The interceptors are service factories that are registered with the $httpProvider by
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8437:     * adding them to the `$httpProvider.responseInterceptors` array. The factory is called and
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8438-     * injected with dependencies (if specified) and returns the interceptor  — a function that
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8778-         * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:8779:         * Runtime equivalent of the `$httpProvider.defaults` property. Allows configuration of
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-8780-         * default headers as well as request and response transformations.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9142-      *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:9143:      * To cancel a the timeout request, call `$timeout.cancel(promise)`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9144-      *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:9145:      * In tests you can use {@link ngMock.$timeout `$timeout.flush()`} to
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9146-      * synchronously flush the queue of deferred functions.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9192-      *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:9193:      * @param {Promise=} promise Promise returned by the `$timeout` function.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9194-      * @returns {boolean} Returns `true` if the task hasn't executed yet and was successfully
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9238- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:9239: * The filter function is registered with the `$injector` under the filter name suffixe with `Filter`.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9240- * <pre>
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9334- *     which have property `name` containing "M" and property `phone` containing "1". A special
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:9335: *     property name `$` can be used (as in `{$:"text"}`) to accept a match against any
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-9336- *     property of the object. That's equivalent to the simple substring match with a `string`
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-11696-   * @param {string} validationErrorKey Name of the validator. the `validationErrorKey` will assign
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:11697:   *        to `$error[validationErrorKey]=isValid` so that it is available for data-binding.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-11698-   *        The `validationErrorKey` should be in camelCase and will get converted into dash-case
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-11699-   *        for class name. Example: `myError` will result in `ng-valid-my-error` and `ng-invalid-my-error`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:11700:   *        class and can be bound to as  `{{someForm.someControl.$error.myError}}` .
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-11701-   * @param {boolean} isValid Whether the current state is valid (true) or invalid (false).
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12404- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12405: * Note that an alternative way to define controllers is via the `{@link ng.$route}`
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12406- * service.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12527- * @param {expression} ngClick {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12528: * click. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12529- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12579- * @param {expression} ngDblclick {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12580: * dblclick. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12581- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12595- * @param {expression} ngMousedown {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12596: * mousedown. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12597- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12611- * @param {expression} ngMouseup {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12612: * mouseup. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12613- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12626- * @param {expression} ngMouseover {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12627: * mouseover. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12628- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12642- * @param {expression} ngMouseenter {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12643: * mouseenter. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12644- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12658- * @param {expression} ngMouseleave {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12659: * mouseleave. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12660- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12674- * @param {expression} ngMousemove {@link guide/expression Expression} to evaluate upon
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:12675: * mousemove. (Event object is available as `$event`)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-12676- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13149- * instance gets its own scope, where the given loop variable is set to the current collection item,
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13150: * and `$index` is set to the item index or key.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13151- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13153- *
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13154: *   * `$index` – `{number}` – iterator offset of the repeated element (0..length-1)
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13155: *   * `$first` – `{boolean}` – true if the repeated element is first in the iterator.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13156: *   * `$middle` – `{boolean}` – true if the repeated element is between the first and last in the iterator.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13157: *   * `$last` – `{boolean}` – true if the repeated element is last in the iterator.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13158- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13625- * Every time the current route changes, the included view changes with it according to the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13626: * configuration of the `$route` service.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13627- *
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13784- * @description
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js:13785: * Load content of a script tag, with type `text/ng-template`, into `$templateCache`, so that the
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/angular-1.0.2.js-13786- * template can be used by `ngInclude`, `ngView` or directive templates.
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/backbone-0.9.2.js-1262-    // Ensure that the View has a DOM element to render into.
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/backbone-0.9.2.js:1263:    // If `this.el` is a string, pass it through `$()`, take the first
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/3rdparty/backbone-0.9.2.js-1264-    // matching element, and re-assign it to `el`. Otherwise, create
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-558-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:559:        'raw`hello ${name}`': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-560-            type: 'Program',
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-670-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:671:        'raw`token ${name}`': [{
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-672-            type: 'Identifier',
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-707-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:708:        'raw`token ${`nested ${`deeply` + {}} blah`}`': [{
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-709-            type: 'Identifier',
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-789-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:790:        'raw`hello ${`nested ${`deeply` + {}} blah`}`': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-791-            type: 'Program',
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-1041-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:1042:        'if(a) { (`${b}`) }': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-1043-            type: 'IfStatement',
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-19888-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:19889:        '`hello ${10 `test`': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-19890-            index: 18,
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-19895-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:19896:        '`hello ${10;test`': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-19897-            index: 11,
##############################################
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-20152-
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js:20153:        '"use strict"; `${test}\\02`;': {
node-esprima-fb-15001.1001.0-dev-harmony-fb/test/harmonytest.js-20154-            index: 21,