AsmAnalysis: Fix out of bounds read due to incorrect bounds checking on literal arguments

This commit is contained in:
Bhargava Shastry
2020-12-15 15:38:59 +01:00
parent 4e86390e40
commit 9b38176c77
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,6 @@
{
function f(a,b) {}
f(x,1)
}
// ----
// DeclarationError 8198: (27-28): Identifier not found.
@@ -0,0 +1,6 @@
{
let x
function f(a,b) {}
f(x,1)
}
// ----