1 2 3 4 5 6 7 8 9
Module = require('./module') OrSpecification = require('./or_specification') NotSpecification = require('./not_specification') module.exports = Specification = or: (other_specification) -> new OrSpecification(this, other_specification) not: -> new NotSpecification(this)