(attrName, directiveName)
| 10686 | } |
| 10687 | |
| 10688 | function strictBindingsCheck(attrName, directiveName) { |
| 10689 | if (strictComponentBindingsEnabled) { |
| 10690 | throw $compileMinErr('missingattr', |
| 10691 | 'Attribute \'{0}\' of \'{1}\' is non-optional and must be set!', |
| 10692 | attrName, directiveName); |
| 10693 | } |
| 10694 | } |
| 10695 | |
| 10696 | // Set up $watches for isolate scope and controller bindings. |
| 10697 | function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) { |
no outgoing calls
no test coverage detected