public getAppBySession()

in src/BootAppManager.ts [56:63]


    public getAppBySession(session: DebugSession): BootApp | undefined {
        const location = Array.from(this._bindedSessions.keys()).find(key => this._bindedSessions.get(key) === session);
        if (location) {
            return this._boot_projects.get(location);
        } else {
            return undefined;
        }
    }