swc/crates/swc_ecma_parser/tests/tsc/numberPropertyAccess.ts

6 lines
145 B
TypeScript

var x = 1;
var a = x.toExponential();
var b = x.hasOwnProperty('toFixed');
var c = x['toExponential']();
var d = x['hasOwnProperty']('toFixed');