(attrName, directiveName)
| 11273 | } |
| 11274 | |
| 11275 | function strictBindingsCheck(attrName, directiveName) { |
| 11276 | if (strictComponentBindingsEnabled) { |
| 11277 | throw $compileMinErr('missingattr', |
| 11278 | 'Attribute \'{0}\' of \'{1}\' is non-optional and must be set!', |
| 11279 | attrName, directiveName); |
| 11280 | } |
| 11281 | } |
| 11282 | |
| 11283 | // Set up $watches for isolate scope and controller bindings. |
| 11284 | function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) { |
no outgoing calls
no test coverage detected