mirror of
https://github.com/github/codeql-action.git
synced 2026-01-02 04:30:14 +08:00
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
'use strict';
|
|
|
|
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}`)
|
|
}
|
|
})
|