You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 26, 2023. It is now read-only.
In order to support a "minimum viable" js -> ambient parser, we need to support the following test cases:
let a = "foo"
- value, constant (satisfied in test case 006)let b = () => "foo"
- function, no arguments, constant expression (satisfied in test case 002, 003, 004, 005, 007)let c = b()
- value, variable expression (satisfied in test case 007)let d = (x) => x
- function, 1 argument, argument expressionlet e = d("foo")
- value, function variable expression, constant expressionlet f = (x) => x()
- function, 1 argument, function argument expressionlet g = f(b)
- value, function and value variable expressionsThe text was updated successfully, but these errors were encountered: