diff -r d334a616c023 -r e16a97fb364a src/cm/media/js/lib/yui/yui3-3.15.0/build/base-base/base-base-coverage.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/cm/media/js/lib/yui/yui3-3.15.0/build/base-base/base-base-coverage.js Mon Mar 10 15:19:48 2014 +0100 @@ -0,0 +1,6 @@ +if (typeof __coverage__ === 'undefined') { __coverage__ = {}; } +if (!__coverage__['build/base-base/base-base.js']) { + __coverage__['build/base-base/base-base.js'] = {"path":"build/base-base/base-base.js","s":{"1":0,"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0},"b":{},"f":{"1":0,"2":0},"fnMap":{"1":{"name":"(anonymous_1)","line":1,"loc":{"start":{"line":1,"column":21},"end":{"line":1,"column":40}}},"2":{"name":"Base","line":85,"loc":{"start":{"line":85,"column":4},"end":{"line":85,"column":20}}}},"statementMap":{"1":{"start":{"line":1,"column":0},"end":{"line":184,"column":82}},"2":{"start":{"line":19,"column":4},"end":{"line":22,"column":43}},"3":{"start":{"line":85,"column":4},"end":{"line":89,"column":5}},"4":{"start":{"line":86,"column":8},"end":{"line":86,"column":40}},"5":{"start":{"line":87,"column":8},"end":{"line":87,"column":46}},"6":{"start":{"line":88,"column":8},"end":{"line":88,"column":47}},"7":{"start":{"line":100,"column":4},"end":{"line":100,"column":73}},"8":{"start":{"line":117,"column":4},"end":{"line":117,"column":88}},"9":{"start":{"line":133,"column":4},"end":{"line":133,"column":23}},"10":{"start":{"line":149,"column":4},"end":{"line":149,"column":60}},"11":{"start":{"line":170,"column":4},"end":{"line":170,"column":44}},"12":{"start":{"line":172,"column":4},"end":{"line":172,"column":42}},"13":{"start":{"line":173,"column":4},"end":{"line":173,"column":49}},"14":{"start":{"line":176,"column":4},"end":{"line":176,"column":47}},"15":{"start":{"line":179,"column":4},"end":{"line":179,"column":38}},"16":{"start":{"line":181,"column":4},"end":{"line":181,"column":18}}},"branchMap":{},"code":["(function () { YUI.add('base-base', function (Y, NAME) {",""," /**"," * The base module provides the Base class, which objects requiring attribute and custom event support can extend."," * The module also provides two ways to reuse code - It augments Base with the Plugin.Host interface which provides"," * plugin support and also provides the BaseCore.build method which provides a way to build custom classes using extensions."," *"," * @module base"," */",""," /**"," * The base-base submodule provides the Base class without the Plugin support, provided by Plugin.Host,"," * and without the extension support provided by BaseCore.build."," *"," * @module base"," * @submodule base-base"," */",""," var AttributeCore = Y.AttributeCore,"," AttributeExtras = Y.AttributeExtras,"," BaseCore = Y.BaseCore,"," BaseObservable = Y.BaseObservable;",""," /**"," *
"," * A base class which objects requiring attributes and custom event support can"," * extend. Base also handles the chaining of initializer and destructor methods across"," * the hierarchy as part of object construction and destruction. Additionally, attributes configured"," * through the static ATTRS property for each class"," * in the hierarchy will be initialized by Base."," *
"," *"," *"," * **NOTE:** Prior to version 3.11.0, ATTRS would get added a class at a time. That is,"," * Base would loop through each class in the hierarchy, and add the class' ATTRS, and"," * then call it's initializer, and move on to the subclass' ATTRS and initializer. As of"," * 3.11.0, ATTRS from all classes in the hierarchy are added in one `addAttrs` call before"," * any initializers are called. This fixes subtle edge-case issues with subclass ATTRS overriding"," * superclass `setter`, `getter` or `valueFn` definitions and being unable to get/set attributes"," * defined by the subclass. This order of operation change may impact `setter`, `getter` or `valueFn`"," * code which expects a superclass' initializer to have run. This is expected to be rare, but to support"," * it, Base supports a `_preAddAttrs()`, method hook (same signature as `addAttrs`). Components can"," * implement this method on their prototype for edge cases which do require finer control over"," * the order in which attributes are added (see widget-htmlparser)."," *
"," *"," *"," * The static NAME property of each class extending"," * from Base will be used as the identifier for the class, and is used by Base to prefix"," * all events fired by instances of that class."," *
"," *"," * @class Base"," * @constructor"," * @uses BaseCore"," * @uses BaseObservable"," * @uses AttributeCore"," * @uses AttributeObservable"," * @uses AttributeExtras"," * @uses EventTarget"," *"," * @param {Object} config Object with configuration property name/value pairs. The object can be"," * used to provide default values for the objects published attributes."," *"," *"," * The config object can also contain the following non-attribute properties, providing a convenient"," * way to configure events listeners and plugins for the instance, as part of the constructor call:"," *
"," *"," *"," * The string to be used to identify instances of"," * this class, for example in prefixing events."," *
"," *"," * Classes extending Base, should define their own"," * static NAME property, which should be camelCase by"," * convention (e.g. MyClass.NAME = \"myClass\";)."," *
"," * @property NAME"," * @type String"," * @static"," */"," Base.NAME = 'base';",""," /**"," * The default set of attributes which will be available for instances of this class, and"," * their configuration. In addition to the configuration properties listed by"," * Attribute's addAttr method, the attribute"," * can also be configured with a \"cloneDefaultValue\" property, which defines how the statically"," * defined value field should be protected (\"shallow\", \"deep\" and false are supported values)."," *"," * By default if the value is an object literal or an array it will be \"shallow\" cloned, to"," * protect the default value."," *"," * @property ATTRS"," * @type Object"," * @static"," */"," Base.ATTRS = AttributeCore.protectAttrs(BaseCore.ATTRS);",""," /**"," Provides a way to safely modify a `Y.Base` subclass' static `ATTRS` after"," the class has been defined or created.",""," Base-based classes cache information about the class hierarchy in order to"," efficiently create instances. This cache includes includes the aggregated"," `ATTRS` configs. If the static `ATTRS` configs need to be modified after the"," class has been defined or create, then use this method which will make sure"," to clear any cached data before making any modifications.",""," @method modifyAttrs"," @param {Function} [ctor] The constructor function whose `ATTRS` should be"," modified. If a `ctor` function is not specified, then `this` is assumed"," to be the constructor which hosts the `ATTRS`."," @param {Object} configs The collection of `ATTRS` configs to mix with the"," existing attribute configurations."," @static"," @since 3.10.0"," **/"," Base.modifyAttrs = BaseCore.modifyAttrs;",""," Y.mix(Base, BaseCore, false, null, 1);"," Y.mix(Base, AttributeExtras, false, null, 1);",""," // Needs to be `true`, to overwrite methods from `BaseCore`."," Y.mix(Base, BaseObservable, true, null, 1);",""," // Fix constructor"," Base.prototype.constructor = Base;",""," Y.Base = Base;","","","}, '@VERSION@', {\"requires\": [\"attribute-base\", \"base-core\", \"base-observable\"]});","","}());"]}; +} +var __cov_f7g9dZFunplQrlRqAhOGDw = __coverage__['build/base-base/base-base.js']; +__cov_f7g9dZFunplQrlRqAhOGDw.s['1']++;YUI.add('base-base',function(Y,NAME){__cov_f7g9dZFunplQrlRqAhOGDw.f['1']++;__cov_f7g9dZFunplQrlRqAhOGDw.s['2']++;var AttributeCore=Y.AttributeCore,AttributeExtras=Y.AttributeExtras,BaseCore=Y.BaseCore,BaseObservable=Y.BaseObservable;__cov_f7g9dZFunplQrlRqAhOGDw.s['3']++;function Base(){__cov_f7g9dZFunplQrlRqAhOGDw.f['2']++;__cov_f7g9dZFunplQrlRqAhOGDw.s['4']++;BaseCore.apply(this,arguments);__cov_f7g9dZFunplQrlRqAhOGDw.s['5']++;BaseObservable.apply(this,arguments);__cov_f7g9dZFunplQrlRqAhOGDw.s['6']++;AttributeExtras.apply(this,arguments);}__cov_f7g9dZFunplQrlRqAhOGDw.s['7']++;Base._ATTR_CFG=BaseCore._ATTR_CFG.concat(BaseObservable._ATTR_CFG);__cov_f7g9dZFunplQrlRqAhOGDw.s['8']++;Base._NON_ATTRS_CFG=BaseCore._NON_ATTRS_CFG.concat(BaseObservable._NON_ATTRS_CFG);__cov_f7g9dZFunplQrlRqAhOGDw.s['9']++;Base.NAME='base';__cov_f7g9dZFunplQrlRqAhOGDw.s['10']++;Base.ATTRS=AttributeCore.protectAttrs(BaseCore.ATTRS);__cov_f7g9dZFunplQrlRqAhOGDw.s['11']++;Base.modifyAttrs=BaseCore.modifyAttrs;__cov_f7g9dZFunplQrlRqAhOGDw.s['12']++;Y.mix(Base,BaseCore,false,null,1);__cov_f7g9dZFunplQrlRqAhOGDw.s['13']++;Y.mix(Base,AttributeExtras,false,null,1);__cov_f7g9dZFunplQrlRqAhOGDw.s['14']++;Y.mix(Base,BaseObservable,true,null,1);__cov_f7g9dZFunplQrlRqAhOGDw.s['15']++;Base.prototype.constructor=Base;__cov_f7g9dZFunplQrlRqAhOGDw.s['16']++;Y.Base=Base;},'@VERSION@',{'requires':['attribute-base','base-core','base-observable']});