(attrName, directiveName)
| 10704 | } |
| 10705 | |
| 10706 | function strictBindingsCheck(attrName, directiveName) { |
| 10707 | if (strictComponentBindingsEnabled) { |
| 10708 | throw $compileMinErr('missingattr', |
| 10709 | 'Attribute \'{0}\' of \'{1}\' is non-optional and must be set!', |
| 10710 | attrName, directiveName); |
| 10711 | } |
| 10712 | } |
| 10713 | |
| 10714 | // Set up $watches for isolate scope and controller bindings. |
| 10715 | function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) { |
no outgoing calls
no test coverage detected