File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/core/src/amazonqFeatureDev Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ export class CodeGenState extends CodeGenBase implements SessionState {
364364 this . codeGenerationRemainingIterationCount ,
365365 this . codeGenerationTotalIterationCount ,
366366 this . tokenSource ,
367- this . currentCodeGenerationId
367+ this . currentCodeGenerationId ,
368368 action . uploadHistory ,
369369 codeGenerationId
370370 )
@@ -486,11 +486,12 @@ export class PrepareCodeGenState implements SessionState {
486486 public references : CodeReference [ ] ,
487487 public tabID : string ,
488488 private currentIteration : number ,
489- public uploadHistory : UploadHistory = { } ,
489+
490490 public codeGenerationRemainingIterationCount ?: number ,
491491 public codeGenerationTotalIterationCount ?: number ,
492492 public superTokenSource ?: vscode . CancellationTokenSource ,
493- public currentCodeGenerationId ?: string
493+ public currentCodeGenerationId ?: string ,
494+ public uploadHistory : UploadHistory = { } ,
494495 public codeGenerationId ?: string
495496 ) {
496497 this . tokenSource = superTokenSource || new vscode . CancellationTokenSource ( )
Original file line number Diff line number Diff line change @@ -61,7 +61,6 @@ export interface SessionState {
6161 readonly references ?: CodeReference [ ]
6262 readonly phase ?: SessionStatePhase
6363 readonly uploadId : string
64- readonly tokenSource : CancellationTokenSource
6564 currentCodeGenerationId ?: string
6665 tokenSource ?: CancellationTokenSource
6766 readonly codeGenerationId ?: string
You can’t perform that action at this time.
0 commit comments