Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test proposed extension API for DebugConsole #37167

Closed
1 task done
weinand opened this issue Oct 30, 2017 · 0 comments
Closed
1 task done

Test proposed extension API for DebugConsole #37167

weinand opened this issue Oct 30, 2017 · 0 comments
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item
Milestone

Comments

@weinand
Copy link
Contributor

weinand commented Oct 30, 2017

Test for #36753:

Complexity: 2

Verify that the following proposed API for the DebugConsole works as documented:

	/**
	 * Represents the debug console.
	 */
	export interface DebugConsole {
		/**
		 * Append the given value to the debug console.
		 *
		 * @param value A string, falsy values will not be printed.
		 */
		append(value: string): void;

		/**
		 * Append the given value and a line feed character
		 * to the debug console.
		 *
		 * @param value A string, falsy values will be printed.
		 */
		appendLine(value: string): void;
	}

	export namespace debug {
		/**
		 * The [debug console](#DebugConsole) singleton.
		 */
		export let console: DebugConsole;
	}
@vscodebot vscodebot bot added the api label Oct 30, 2017
@weinand weinand added debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item and removed api labels Oct 30, 2017
@weinand weinand added this to the October 2017 milestone Oct 30, 2017
@jrieken jrieken assigned jrieken and unassigned jrieken Oct 31, 2017
@jrieken jrieken closed this as completed Oct 31, 2017
@vscodebot vscodebot bot locked and limited conversation to collaborators Dec 15, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues testplan-item
Projects
None yet
Development

No branches or pull requests

2 participants