Permalink
Cannot retrieve contributors at this time
128 lines (99 sloc)
5.33 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/axobject-query/lib/AXObjectRoleMap.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 _AXObjectsMap = _interopRequireDefault(require("./AXObjectsMap")); | |
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 AXObjectRoleElements = []; | |
var _iterator = _createForOfIteratorHelper(_AXObjectsMap.default.entries()), | |
_step; | |
try { | |
var _loop = function _loop() { | |
var _step$value = _slicedToArray(_step.value, 2), | |
name = _step$value[0], | |
def = _step$value[1]; | |
var relatedConcepts = def.relatedConcepts; | |
if (Array.isArray(relatedConcepts)) { | |
relatedConcepts.forEach(function (relation) { | |
if (relation.module === 'ARIA') { | |
var concept = relation.concept; | |
if (concept) { | |
var index = AXObjectRoleElements.findIndex(function (_ref5) { | |
var _ref6 = _slicedToArray(_ref5, 1), | |
key = _ref6[0]; | |
return key === name; | |
}); | |
if (index === -1) { | |
AXObjectRoleElements.push([name, []]); | |
index = AXObjectRoleElements.length - 1; | |
} | |
AXObjectRoleElements[index][1].push(concept); | |
} | |
} | |
}); | |
} | |
}; | |
for (_iterator.s(); !(_step = _iterator.n()).done;) { | |
_loop(); | |
} | |
} catch (err) { | |
_iterator.e(err); | |
} finally { | |
_iterator.f(); | |
} | |
var AXObjectRoleMap = { | |
entries: function entries() { | |
return AXObjectRoleElements; | |
}, | |
forEach: function forEach(fn) { | |
var thisArg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; | |
var _iterator2 = _createForOfIteratorHelper(AXObjectRoleElements), | |
_step2; | |
try { | |
for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) { | |
var _step2$value = _slicedToArray(_step2.value, 2), | |
key = _step2$value[0], | |
values = _step2$value[1]; | |
fn.call(thisArg, values, key, AXObjectRoleElements); | |
} | |
} catch (err) { | |
_iterator2.e(err); | |
} finally { | |
_iterator2.f(); | |
} | |
}, | |
get: function get(key) { | |
var item = AXObjectRoleElements.find(function (tuple) { | |
return tuple[0] === key ? true : false; | |
}); | |
return item && item[1]; | |
}, | |
has: function has(key) { | |
return !!this.get(key); | |
}, | |
keys: function keys() { | |
return AXObjectRoleElements.map(function (_ref) { | |
var _ref2 = _slicedToArray(_ref, 1), | |
key = _ref2[0]; | |
return key; | |
}); | |
}, | |
values: function values() { | |
return AXObjectRoleElements.map(function (_ref3) { | |
var _ref4 = _slicedToArray(_ref3, 2), | |
values = _ref4[1]; | |
return values; | |
}); | |
} | |
}; | |
var _default = (0, _iterationDecorator.default)(AXObjectRoleMap, AXObjectRoleMap.entries()); | |
exports.default = _default; |