Skip to content

Commit 9353e7e

Browse files
committed
fix memoryAssign bug
1 parent 8199deb commit 9353e7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/EIDEProjectExplorer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5686,7 +5686,7 @@ export class ProjectExplorer implements CustomConfigurationProvider {
56865686
}
56875687
}
56885688

5689-
if (Object.keys(memoryAssign[pattern]).length === 0) {
5689+
if (memoryAssign[pattern] && Object.keys(memoryAssign[pattern]).length === 0) {
56905690
delete memoryAssign[pattern]; // remove empty assign
56915691
}
56925692

0 commit comments

Comments
 (0)