swc/crates/swc_ecma_parser/tests/tsc/globalThisPropertyAssignment.ts
2022-02-04 17:08:38 +09:00

11 lines
239 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: globalThisPropertyAssignment.js
this.x = 1
var y = 2
// should work in JS
window.z = 3
// should work in JS (even though it's a secondary declaration)
globalThis.alpha = 4