1 /*global $k*/
  2 
  3 /**
  4  * @class Represents a property.
  5  * @extends $k.SemanticElement
  6 **/
  7 $k.Property = function() { };
  8 
  9 /**
 10  * Returns the semantic element that has this property
 11  *
 12  * @function
 13  * @returns {$k.SemanticElement}
 14 **/
 15 $k.Property.prototype.source = function() { };
 16 
 17