(attrName, directiveName)
| 11338 | } |
| 11339 | |
| 11340 | function strictBindingsCheck(attrName, directiveName) { |
| 11341 | if (strictComponentBindingsEnabled) { |
| 11342 | throw $compileMinErr('missingattr', |
| 11343 | 'Attribute \'{0}\' of \'{1}\' is non-optional and must be set!', |
| 11344 | attrName, directiveName); |
| 11345 | } |
| 11346 | } |
| 11347 | |
| 11348 | // Set up $watches for isolate scope and controller bindings. |
| 11349 | function initializeDirectiveBindings(scope, attrs, destination, bindings, directive) { |
no outgoing calls
no test coverage detected