public exists()

in vscode-extension/src/platform.ts [512:517]


    public exists(): boolean {
        if (this.knownToExist === undefined) {
            this.knownToExist = fileExistsSync(this.exePath);
        }
        return this.knownToExist;
    }