mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
27 lines
641 B
TypeScript
27 lines
641 B
TypeScript
// @noEmit: true
|
|
// @allowJs: true
|
|
// @checkJs: true
|
|
// @Filename: requires.d.ts
|
|
declare var module: { exports: any };
|
|
declare function require(name: string): any;
|
|
// @Filename: mod1.js
|
|
/// <reference path='./requires.d.ts' />
|
|
module.exports.bothBefore = 'string'
|
|
A.justExport = 4
|
|
A.bothBefore = 2
|
|
A.bothAfter = 3
|
|
module.exports = A
|
|
function A() {
|
|
this.p = 1
|
|
}
|
|
module.exports.bothAfter = 'string'
|
|
module.exports.justProperty = 'string'
|
|
|
|
// @Filename: a.js
|
|
/// <reference path='./requires.d.ts' />
|
|
var mod1 = require('./mod1')
|
|
mod1.justExport.toFixed()
|
|
mod1.bothBefore.toFixed() // error
|
|
mod1.bothAfter.toFixed()
|
|
mod1.justProperty.length
|