Skip to content

Commit

Permalink
Harmless renames needed for the variable viewer (#10068)
Browse files Browse the repository at this point in the history
  • Loading branch information
sadasant authored May 19, 2022
1 parent c4a3a14 commit e6f523d
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/kernels/serviceRegistry.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ import { RawNotebookSupportedService } from './raw/session/rawNotebookSupportedS
import { IKernelLauncher, ILocalKernelFinder, IRawNotebookProvider, IRawNotebookSupportedService } from './raw/types';
import { DebuggerVariableRegistration } from './variables/debuggerVariableRegistration.node';
import { DebuggerVariables } from './variables/debuggerVariables.node';
import { JupyterVariables } from './variables/jupyterVariables.node';
import { KernelVariables } from './variables/kernelVariables.node';
import { JupyterVariables } from './variables/jupyterVariables';
import { KernelVariables } from './variables/kernelVariables';
import { PreWarmActivatedJupyterEnvironmentVariables } from './variables/preWarmVariables.node';
import { PythonVariablesRequester } from './variables/pythonVariableRequester.node';
import { ICellHashListener } from '../interactive-window/editor-integration/types';
import { IInteractiveWindowDebugger } from '../interactive-window/types';
import { MultiplexingDebugService } from '../platform/debugger/multiplexingDebugService.node';
import { JupyterVariableDataProvider } from '../webviews/extension-side/dataviewer/jupyterVariableDataProvider.node';
import { JupyterVariableDataProvider } from '../webviews/extension-side/dataviewer/jupyterVariableDataProvider';
import { JupyterVariableDataProviderFactory } from '../webviews/extension-side/dataviewer/jupyterVariableDataProviderFactory.node';
import {
IJupyterVariableDataProvider,
Expand Down
2 changes: 1 addition & 1 deletion src/kernels/variables/debuggerVariables.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { IDebugService, IVSCodeNotebook } from '../../platform/common/applicatio
import { DataFrameLoading, GetVariableInfo } from '../../platform/common/constants.node';
import { traceError } from '../../platform/logging';
import { IConfigurationService, Resource } from '../../platform/common/types';
import { DebugLocationTracker } from '../../platform/debugger/debugLocationTracker.node';
import { DebugLocationTracker } from '../../platform/debugger/debugLocationTracker';
import { IDebuggingManager, KernelDebugMode } from '../../platform/debugger/types';
import { sendTelemetryEvent } from '../../telemetry';
import { Identifiers, Telemetry } from '../../webviews/webview-side/common/constants';
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/platform/debugger/debugLocationTrackerFactory.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {

import { IDebugService } from '../common/application/types';
import { IDisposableRegistry } from '../common/types';
import { DebugLocationTracker } from './debugLocationTracker.node';
import { DebugLocationTracker } from './debugLocationTracker';
import { IDebugLocationTracker } from './types';

// Hook up our IDebugLocationTracker to python debugging sessions
Expand Down
2 changes: 1 addition & 1 deletion src/test/datascience/data-viewing/dataViewer.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { IConfigurationService } from '../../../platform/common/types';
import { IDataScienceErrorHandler } from '../../../platform/errors/types';
import { CodeCssGenerator } from '../../../webviews/extension-side/codeCssGenerator.node';
import { DataViewer } from '../../../webviews/extension-side/dataviewer/dataViewer.node';
import { JupyterVariableDataProvider } from '../../../webviews/extension-side/dataviewer/jupyterVariableDataProvider.node';
import { JupyterVariableDataProvider } from '../../../webviews/extension-side/dataviewer/jupyterVariableDataProvider';
import { IDataViewer, IDataViewerDataProvider } from '../../../webviews/extension-side/dataviewer/types';
import { ThemeFinder } from '../../../webviews/extension-side/themeFinder.node';
import { ICodeCssGenerator, IThemeFinder } from '../../../webviews/extension-side/types';
Expand Down
2 changes: 1 addition & 1 deletion src/test/datascience/debugLocationTracker.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/* eslint-disable , , @typescript-eslint/no-explicit-any, no-multi-str, no-trailing-spaces */
import { expect } from 'chai';
import { DebugProtocol } from 'vscode-debugprotocol';
import { DebugLocationTracker } from '../../platform/debugger/debugLocationTracker.node';
import { DebugLocationTracker } from '../../platform/debugger/debugLocationTracker';
import { IDebugLocation } from '../../platform/debugger/types';

suite('Debug Location Tracker', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/webviews/extension-side/serviceRegistry.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { IExtensionSingleActivationService } from '../../platform/activation/typ
import { IWebviewViewProvider, IWebviewPanelProvider } from '../../platform/common/application/types';
import { IServiceManager } from '../../platform/ioc/types';
import { IVariableViewProvider } from './variablesView/types';
import { VariableViewActivationService } from './variablesView/variableViewActivationService.node';
import { VariableViewActivationService } from './variablesView/variableViewActivationService';
import { VariableViewProvider } from './variablesView/variableViewProvider.node';
import { WebviewPanelProvider } from './webviewPanels/webviewPanelProvider.node';
import { WebviewViewProvider } from './webviewViews/webviewViewProvider.node';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { WebviewView as vscodeWebviewView } from 'vscode';

import { captureTelemetry, sendTelemetryEvent } from '../../../telemetry';
import { INotebookWatcher, IVariableViewPanelMapping } from './types';
import { VariableViewMessageListener } from './variableViewMessageListener.node';
import { VariableViewMessageListener } from './variableViewMessageListener';
import { InteractiveWindowMessages, IShowDataViewer } from '../../../platform/messageTypes';
import {
IJupyterVariables,
Expand Down

0 comments on commit e6f523d

Please sign in to comment.