== should print the call expression == test(a, b, c ); [expect] test(a, b, c); == should print type arguments == test< T,U >(); [expect] test(); == should print when optional == test?.( ) ; [expect] test?.(); == should support optional call expressions == callExpr?.(); [expect] callExpr?.(); == source phase import == const x = await import .source(""); // not yet supported in swc // const y = await import.defer(""); [expect] const x = await import.source(""); // not yet supported in swc // const y = await import.defer("");