(
arg1:
| string
| {
[id: string]: Type | TypeString | Partial<SymbolDefinition>;
},
arg2?: Type | TypeString | Partial<SymbolDefinition>,
scope?: Scope
)
| 1353 | |
| 1354 | startup.bootstrapLibraries(options?.libraries); |
| 1355 | |
| 1356 | const commonSymbols = startup.initializeCommonSymbolBindings( |
| 1357 | this._commonSymbols |
| 1358 | ); |
| 1359 | this.True = commonSymbols.True; |
| 1360 | this.False = commonSymbols.False; |
| 1361 | this.Pi = commonSymbols.Pi; |
| 1362 | this.E = commonSymbols.E; |
| 1363 | this.Nothing = commonSymbols.Nothing; |
| 1364 | this.Missing = commonSymbols.Missing; |
| 1365 | |
| 1366 | // Push a fresh scope to protect system definitions: |
| 1367 | // this will be the "global" scope |
| 1368 | this.pushScope(undefined, 'global'); |
no outgoing calls