@@ -61,9 +61,10 @@ export type SpecialNativeObjects = Map<string, NativeObjectToken | PackageObject
61
61
* Prepares models for the ECMAScript and Node.js native declarations.
62
62
* Returns the global identifiers and the tokens for special native objects.
63
63
*/
64
- export function buildNatives ( solver : Solver , moduleInfo : ModuleInfo ) : [ Array < Identifier > , SpecialNativeObjects ] {
64
+ export function buildNatives ( solver : Solver , moduleInfo : ModuleInfo ) : { globals : Array < Identifier > , globalsHidden : Array < Identifier > , specials : SpecialNativeObjects } {
65
65
const globals : Array < Identifier > = [ ] ;
66
- const natives : SpecialNativeObjects = new Map ;
66
+ const globalsHidden : Array < Identifier > = [ ] ;
67
+ const specials : SpecialNativeObjects = new Map ;
67
68
const a = solver . analysisState ;
68
69
69
70
const models = [ ecmascriptModels , nodejsModels ] ;
@@ -84,13 +85,12 @@ export function buildNatives(solver: Solver, moduleInfo: ModuleInfo): [Array<Ide
84
85
if ( options . natives || m . name === "ecmascript" || ( m . name === "nodejs" && [ "exports" , "module" ] . includes ( name ) ) ) {
85
86
const id = identifier ( name ) ;
86
87
id . loc = loc ;
87
- if ( ! hidden )
88
- globals . push ( id ) ;
88
+ ( hidden ? globalsHidden : globals ) . push ( id ) ;
89
89
const t = init
90
- ? init ( { solver, moduleInfo, natives, id} )
90
+ ? init ( { solver, moduleInfo, natives : specials , id} )
91
91
: a . canonicalizeToken ( new NativeObjectToken ( name , moduleSpecific ? moduleInfo : undefined , invoke , constr ) ) ;
92
92
solver . addTokenConstraint ( t , a . varProducer . nodeVar ( id ) ) ;
93
- natives . set ( name , t ) ;
93
+ specials . set ( name , t ) ;
94
94
}
95
95
}
96
96
@@ -107,9 +107,9 @@ export function buildNatives(solver: Solver, moduleInfo: ModuleInfo): [Array<Ide
107
107
function definePrototypeObject ( name : string ) : NativeObjectToken {
108
108
const t = a . canonicalizeToken ( new NativeObjectToken ( `${ name } .prototype` ) ) ;
109
109
if ( m . name === "ecmascript" )
110
- natives . set ( t . name , t ) ;
110
+ specials . set ( t . name , t ) ;
111
111
if ( options . natives || m . name === "ecmascript" )
112
- solver . addTokenConstraint ( t , a . varProducer . objPropVar ( natives . get ( name ) ! , "prototype" ) ) ;
112
+ solver . addTokenConstraint ( t , a . varProducer . objPropVar ( specials . get ( name ) ! , "prototype" ) ) ;
113
113
return t ;
114
114
}
115
115
@@ -127,8 +127,8 @@ export function buildNatives(solver: Solver, moduleInfo: ModuleInfo): [Array<Ide
127
127
if ( options . natives ) {
128
128
const t = a . canonicalizeToken ( new NativeObjectToken ( `${ x . name } .${ f . name } ` , undefined , f . invoke ) ) ;
129
129
if ( m . name === "ecmascript" )
130
- natives . set ( t . name , t ) ;
131
- solver . addTokenConstraint ( t , a . varProducer . objPropVar ( natives . get ( x . name ) ! , f . name ) ) ;
130
+ specials . set ( t . name , t ) ;
131
+ solver . addTokenConstraint ( t , a . varProducer . objPropVar ( specials . get ( x . name ) ! , f . name ) ) ;
132
132
}
133
133
}
134
134
@@ -139,7 +139,7 @@ export function buildNatives(solver: Solver, moduleInfo: ModuleInfo): [Array<Ide
139
139
if ( options . natives ) {
140
140
const t = a . canonicalizeToken ( new NativeObjectToken ( `${ x . name } .prototype.${ f . name } ` , undefined , f . invoke ) ) ;
141
141
if ( m . name === "ecmascript" )
142
- natives . set ( t . name , t ) ;
142
+ specials . set ( t . name , t ) ;
143
143
solver . addTokenConstraint ( t , a . varProducer . objPropVar ( pro , f . name ) ) ;
144
144
}
145
145
}
@@ -188,10 +188,10 @@ export function buildNatives(solver: Solver, moduleInfo: ModuleInfo): [Array<Ide
188
188
if ( m . init ) {
189
189
if ( logger . isVerboseEnabled ( ) )
190
190
logger . verbose ( `Running initialization for ${ m . name } ` ) ;
191
- m . init ( { solver, moduleInfo, natives} ) ;
191
+ m . init ( { solver, moduleInfo, natives : specials } ) ;
192
192
}
193
193
if ( logger . isVerboseEnabled ( ) )
194
194
logger . verbose ( "Adding natives completed" ) ;
195
195
196
- return [ globals , natives ] ;
196
+ return { globals, globalsHidden , specials } ;
197
197
}
0 commit comments