We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef49f9 commit 95bebcfCopy full SHA for 95bebcf
src/core/assembler/assembler.ts
@@ -69,6 +69,7 @@ export class Assembler {
69
while (true) {
70
const { done, value: node } = parser.next()
71
if (done) {
72
+ this.processPendingChunks()
73
return node
74
}
75
this.collectErrors(context)
@@ -84,7 +85,6 @@ export class Assembler {
84
85
finally {
86
context.checkLabels()
87
- this.processPendings()
88
89
return null
90
@@ -194,7 +194,7 @@ export class Assembler {
194
})
195
196
197
- private processPendings(): void {
+ private processPendingChunks(): void {
198
this.pendings.forEach((chunk) => {
199
const state = createAssemblerState(chunk.offset)
200
AssemblerState.Provider({
0 commit comments