mirror of
https://github.com/azure/login.git
synced 2026-06-07 09:17:09 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87 lines
No EOL
2 KiB
JavaScript
87 lines
No EOL
2 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = readInitialCoverage;
|
|
|
|
var _parser = require("@babel/parser");
|
|
|
|
var _traverse = _interopRequireDefault(require("@babel/traverse"));
|
|
|
|
var _schema = require("@istanbuljs/schema");
|
|
|
|
var _constants = require("./constants");
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
function getAst(code) {
|
|
if (typeof code === 'object' && typeof code.type === 'string') {
|
|
// Assume code is already a babel ast.
|
|
return code;
|
|
}
|
|
|
|
if (typeof code !== 'string') {
|
|
throw new Error('Code must be a string');
|
|
} // Parse as leniently as possible
|
|
|
|
|
|
return (0, _parser.parse)(code, {
|
|
allowImportExportEverywhere: true,
|
|
allowReturnOutsideFunction: true,
|
|
allowSuperOutsideMethod: true,
|
|
sourceType: 'script',
|
|
plugins: _schema.defaults.instrumenter.parserPlugins
|
|
});
|
|
}
|
|
|
|
function readInitialCoverage(code) {
|
|
const ast = getAst(code);
|
|
let covScope;
|
|
(0, _traverse.default)(ast, {
|
|
ObjectProperty(path) {
|
|
const {
|
|
node
|
|
} = path;
|
|
|
|
if (!node.computed && path.get('key').isIdentifier() && node.key.name === _constants.MAGIC_KEY) {
|
|
const magicValue = path.get('value').evaluate();
|
|
|
|
if (!magicValue.confident || magicValue.value !== _constants.MAGIC_VALUE) {
|
|
return;
|
|
}
|
|
|
|
covScope = path.scope.getFunctionParent() || path.scope.getProgramParent();
|
|
path.stop();
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
if (!covScope) {
|
|
return null;
|
|
}
|
|
|
|
const result = {};
|
|
|
|
for (const key of ['path', 'hash', 'gcv', 'coverageData']) {
|
|
const binding = covScope.getOwnBinding(key);
|
|
|
|
if (!binding) {
|
|
return null;
|
|
}
|
|
|
|
const valuePath = binding.path.get('init');
|
|
const value = valuePath.evaluate();
|
|
|
|
if (!value.confident) {
|
|
return null;
|
|
}
|
|
|
|
result[key] = value.value;
|
|
}
|
|
|
|
delete result.coverageData[_constants.MAGIC_KEY];
|
|
delete result.coverageData.hash;
|
|
return result;
|
|
} |