Move project entry classes to separate file (#17629)

* moving ProjectEntry stuff to another file

* cleanup
This commit is contained in:
Kim Santiago
2021-11-09 16:03:39 -08:00
committed by GitHub
parent 329ea4103c
commit b6047ad87d
10 changed files with 177 additions and 160 deletions

View File

@@ -8,10 +8,11 @@ import * as vscode from 'vscode';
import * as os from 'os';
import * as path from 'path';
import { Project, EntryType } from '../models/project';
import { Project } from '../models/project';
import { FolderNode, FileNode, sortFileFolderNodes } from '../models/tree/fileFolderTreeItem';
import { ProjectRootTreeItem } from '../models/tree/projectTreeItem';
import { DatabaseProjectItemType } from '../common/constants';
import { EntryType } from '../models/projectEntry';
describe('Project Tree tests', function (): void {
it('Should correctly order tree nodes by type, then by name', function (): void {