mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
add support for the new assign expression in TypeScript 4
This commit is contained in:
@@ -77,6 +77,9 @@ public class ExprKinds {
|
||||
binOpKinds.put("**", 87);
|
||||
binOpKinds.put("**=", 88);
|
||||
binOpKinds.put("??", 107);
|
||||
binOpKinds.put("&&=", 116);
|
||||
binOpKinds.put("||=", 117);
|
||||
binOpKinds.put("??=", 118);
|
||||
}
|
||||
|
||||
private static final Map<String, Integer> unOpKinds = new LinkedHashMap<String, Integer>();
|
||||
|
||||
Reference in New Issue
Block a user