mirror of
https://github.com/github/codeql.git
synced 2025-12-22 03:36:30 +01:00
17 lines
327 B
Plaintext
17 lines
327 B
Plaintext
/**
|
|
* @name Syntax error
|
|
* @description A piece of code could not be parsed due to syntax errors.
|
|
* @kind problem
|
|
* @problem.severity error
|
|
* @id js/syntax-error
|
|
* @tags reliability
|
|
* correctness
|
|
* language-features
|
|
* @precision high
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from JSParseError pe
|
|
select pe, pe.getMessage()
|