You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
745 B

  1. // Generated by CoffeeScript 1.6.2
  2. var ElementsCollection, MetaCollection, _ref,
  3. __hasProp = {}.hasOwnProperty,
  4. __extends = 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; };
  5. ElementsCollection = require(__dirname + '/elements');
  6. MetaCollection = (function(_super) {
  7. __extends(MetaCollection, _super);
  8. function MetaCollection() {
  9. _ref = MetaCollection.__super__.constructor.apply(this, arguments);
  10. return _ref;
  11. }
  12. return MetaCollection;
  13. })(ElementsCollection);
  14. module.exports = MetaCollection;