Merge pull request #115530 from microsoft/joh/norpc

Hide API implementation proxies, add tests to check for "proxy leakage"
This commit is contained in:
Johannes Rieken
2021-02-03 09:17:56 +01:00
committed by GitHub
33 changed files with 623 additions and 629 deletions

View File

@@ -237,7 +237,6 @@ export interface MainThreadDocumentsShape extends IDisposable {
export interface ITextEditorConfigurationUpdate {
tabSize?: number | 'auto';
indentSize?: number | 'tabSize';
insertSpaces?: boolean | 'auto';
cursorStyle?: TextEditorCursorStyle;
lineNumbers?: RenderLineNumbersType;
@@ -245,7 +244,6 @@ export interface ITextEditorConfigurationUpdate {
export interface IResolvedTextEditorConfiguration {
tabSize: number;
indentSize: number;
insertSpaces: boolean;
cursorStyle: TextEditorCursorStyle;
lineNumbers: RenderLineNumbersType;