File tree 2 files changed +5
-5
lines changed
JSInterop/Microsoft.JSInterop.JS/src/src 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ import { attachStreamingRenderingListener } from './Rendering/StreamingRendering
17
17
import { WebAssemblyComponentDescriptor } from './Services/ComponentDescriptorDiscovery' ;
18
18
import { ServerComponentDescriptor , discoverComponents } from './Services/ComponentDescriptorDiscovery' ;
19
19
20
- let booted = false ;
20
+ let started = false ;
21
21
22
22
async function boot ( options ?: Partial < WebStartOptions > ) : Promise < void > {
23
- if ( booted ) {
23
+ if ( started ) {
24
24
throw new Error ( 'Blazor has already started.' ) ;
25
25
}
26
- booted = true ;
26
+ started = true ;
27
27
await activateInteractiveComponents ( options ) ;
28
28
29
29
attachStreamingRenderingListener ( ) ;
Original file line number Diff line number Diff line change @@ -667,9 +667,9 @@ export module DotNet {
667
667
}
668
668
669
669
let nextByteArrayIndex = 0 ;
670
- function stringifyArgs ( jsCallDispatcher : CallDispatcher , args : any [ ] | null ) {
670
+ function stringifyArgs ( callDispatcher : CallDispatcher , args : any [ ] | null ) {
671
671
nextByteArrayIndex = 0 ;
672
- currentCallDispatcher = jsCallDispatcher ;
672
+ currentCallDispatcher = callDispatcher ;
673
673
const result = JSON . stringify ( args , argReplacer ) ;
674
674
currentCallDispatcher = undefined ;
675
675
return result ;
You can’t perform that action at this time.
0 commit comments