Lines Matching refs:requires
194 this.requires = value.requires || [];
265 this.requires = new Set();
270 if (item.requires.length) {
271 for (const req of item.requires) {
272 this.requires.add(req);
328 * @param {Set} requires
331 isLacking(requires) {
333 if (requires.has('full-icu') && current !== kIntlRequirement.full) {
336 if (requires.has('small-icu') && current < kIntlRequirement.small) {
881 const lackingIntl = intlRequirements.isLacking(spec.requires);
883 this.skip(filename, [ `requires ${lackingIntl}` ]);