Permalink
Cannot retrieve contributors at this time
85 lines (84 sloc)
4.75 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/aria-query/lib/roleElementMap.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.default = void 0; | |
var _iterationDecorator = _interopRequireDefault(require("./util/iterationDecorator")); | |
var _rolesMap = _interopRequireDefault(require("./rolesMap")); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } | |
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } | |
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } | |
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } | |
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; } | |
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } | |
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } | |
var roleElement = []; | |
var keys = _rolesMap.default.keys(); | |
for (var i = 0; i < keys.length; i++) { | |
var key = keys[i]; | |
var role = _rolesMap.default.get(key); | |
var relationConcepts = []; | |
if (role) { | |
var concepts = [].concat(role.baseConcepts, role.relatedConcepts); | |
for (var k = 0; k < concepts.length; k++) { | |
var relation = concepts[k]; | |
if (relation.module === 'HTML') { | |
var concept = relation.concept; | |
if (concept != null) { | |
relationConcepts.push(concept); | |
} | |
} | |
} | |
if (relationConcepts.length > 0) { | |
roleElement.push([key, relationConcepts]); | |
} | |
} | |
} | |
var roleElementMap = { | |
entries: function entries() { | |
return roleElement; | |
}, | |
forEach: function forEach(fn) { | |
var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; | |
var _iterator = _createForOfIteratorHelper(roleElement), | |
_step; | |
try { | |
for (_iterator.s(); !(_step = _iterator.n()).done;) { | |
var _step$value = _slicedToArray(_step.value, 2), | |
_key = _step$value[0], | |
values = _step$value[1]; | |
fn.call(thisArg, values, _key, roleElement); | |
} | |
} catch (err) { | |
_iterator.e(err); | |
} finally { | |
_iterator.f(); | |
} | |
}, | |
get: function get(key) { | |
var item = roleElement.find(function (tuple) { | |
return tuple[0] === key ? true : false; | |
}); | |
return item && item[1]; | |
}, | |
has: function has(key) { | |
return !!roleElementMap.get(key); | |
}, | |
keys: function keys() { | |
return roleElement.map(function (_ref) { | |
var _ref2 = _slicedToArray(_ref, 1), | |
key = _ref2[0]; | |
return key; | |
}); | |
}, | |
values: function values() { | |
return roleElement.map(function (_ref3) { | |
var _ref4 = _slicedToArray(_ref3, 2), | |
values = _ref4[1]; | |
return values; | |
}); | |
} | |
}; | |
var _default = (0, _iterationDecorator.default)(roleElementMap, roleElementMap.entries()); | |
exports.default = _default; |