Background.js 654 B

1234567891011121314151617
  1. // Generated by CoffeeScript 1.9.3
  2. var Background, _Declaration,
  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. _Declaration = require('./_Declaration');
  6. module.exports = Background = (function(superClass) {
  7. extend(Background, superClass);
  8. function Background() {
  9. return Background.__super__.constructor.apply(this, arguments);
  10. }
  11. return Background;
  12. })(_Declaration);