Skip to content

Commit

Permalink
Merge pull request #4204 from silamon/proposedApiCheck
Browse files Browse the repository at this point in the history
Remove check proposed api checks
  • Loading branch information
Tyriar committed Oct 15, 2022
2 parents aea7680 + 073aa6d commit aeba140
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/browser/public/Terminal.ts
Expand Up @@ -78,7 +78,6 @@ export class Terminal implements ITerminalApi {

public get element(): HTMLElement | undefined { return this._core.element; }
public get parser(): IParser {
this._checkProposedApi();
if (!this._parser) {
this._parser = new ParserApi(this._core);
}
Expand All @@ -92,7 +91,6 @@ export class Terminal implements ITerminalApi {
public get rows(): number { return this._core.rows; }
public get cols(): number { return this._core.cols; }
public get buffer(): IBufferNamespaceApi {
this._checkProposedApi();
if (!this._buffer) {
this._buffer = new BufferNamespaceApi(this._core);
}
Expand Down Expand Up @@ -148,7 +146,6 @@ export class Terminal implements ITerminalApi {
this._core.attachCustomKeyEventHandler(customKeyEventHandler);
}
public registerLinkProvider(linkProvider: ILinkProvider): IDisposable {
this._checkProposedApi();
return this._core.registerLinkProvider(linkProvider);
}
public registerCharacterJoiner(handler: (text: string) => [number, number][]): number {
Expand Down
2 changes: 1 addition & 1 deletion src/headless/public/Terminal.test.ts
Expand Up @@ -22,7 +22,7 @@ describe('Headless API Tests', function (): void {

it('Proposed API check', async () => {
term = new Terminal({ allowProposedApi: false });
throws(() => term.buffer, (error) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
throws(() => term.markers, (error) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
});

it('write', async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/api/Terminal.api.ts
Expand Up @@ -35,7 +35,7 @@ describe('API Integration Tests', function(): void {
await openTerminal(page, { allowProposedApi: false });
await page.evaluate(`
try {
window.term.buffer;
window.term.markers;
} catch (e) {
window.throwMessage = e.message;
}
Expand Down

0 comments on commit aeba140

Please sign in to comment.