mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 18:28:58 +00:00
43 lines
1.7 KiB
JavaScript
43 lines
1.7 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
const _positiveLookBehind = /\(\?<=.+/;
|
|
const _negativeLookBehind = /\(\?<!.+/;
|
|
function _containsLookBehind(pattern) {
|
|
if (typeof pattern !== 'string') {
|
|
return false;
|
|
}
|
|
return _positiveLookBehind.test(pattern) || _negativeLookBehind.test(pattern);
|
|
}
|
|
module.exports = {
|
|
create(context) {
|
|
return {
|
|
// /.../
|
|
['Literal[regex]']: (node) => {
|
|
const pattern = node.regex?.pattern;
|
|
if (_containsLookBehind(pattern)) {
|
|
context.report({
|
|
node,
|
|
message: 'Look behind assertions are not yet supported in all browsers'
|
|
});
|
|
}
|
|
},
|
|
// new Regex("...")
|
|
['NewExpression[callee.name="RegExp"] Literal']: (node) => {
|
|
if (_containsLookBehind(node.value)) {
|
|
context.report({
|
|
node,
|
|
message: 'Look behind assertions are not yet supported in all browsers'
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
};
|