Default.js 715 B

1234567891011121314151617
  1. // Generated by CoffeeScript 1.9.3
  2. var DefaultLineWrapper,
  3. extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
  4. hasProp = {}.hasOwnProperty;
  5. module.exports = DefaultLineWrapper = (function(superClass) {
  6. extend(DefaultLineWrapper, superClass);
  7. function DefaultLineWrapper() {
  8. return DefaultLineWrapper.__super__.constructor.apply(this, arguments);
  9. }
  10. DefaultLineWrapper.prototype._render = function() {};
  11. return DefaultLineWrapper;
  12. })(require('./_LineWrapper'));