(attrName, directiveName)
| 10615 | } |
| 10616 | |
| 10617 | function strictBindingsCheck(attrName, directiveName) { |
| 10618 | if (strictComponentBindingsEnabled) { |
| 10619 | throw $compileMinErr('missingattr', |
| 10620 | 'Attribute \'{0}\' of \'{1}\' is non-optional and must be set!', |
| 10621 | attrName, directiveName); |
| 10622 | } |
| 10623 | } |
| 10624 | |
| 10625 | // Set up $watches for isolate scope and controller bindings. |
| 10626 | function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) { |
no outgoing calls
no test coverage detected