Arbitrary.js 648 B

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