mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 12:40:21 +08:00
9 lines
284 B
JavaScript
9 lines
284 B
JavaScript
module.exports = (context, badBrowser) => ({
|
|
ClassPrivateProperty(node) {
|
|
context.report(node, `Private Class Fields are not supported in ${badBrowser}`)
|
|
},
|
|
PrivateIdentifier(node) {
|
|
context.report(node, `Private Class Fields are not supported in ${badBrowser}`)
|
|
}
|
|
})
|