當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript omnisharp-client.CompositeDisposable類代碼示例

本文整理匯總了TypeScript中omnisharp-client.CompositeDisposable的典型用法代碼示例。如果您正苦於以下問題:TypeScript CompositeDisposable類的具體用法?TypeScript CompositeDisposable怎麽用?TypeScript CompositeDisposable使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了CompositeDisposable類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();
        const commands: any = atom.commands;

        expect(commands.registeredCommands["omnisharp-atom:go-to-definition"]).to.be.true;
        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:7,代碼來源:go-to-definition-spec.ts

示例2: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();
        const commands: any = atom.commands;

        expect(commands.registeredCommands["omnisharp-atom:navigate-up"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:navigate-down"]).to.be.true;
        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:8,代碼來源:navigate-up-down-spec.ts

示例3: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();
        const commands: any = atom.commands;

        expect(commands.registeredCommands["omnisharp-atom:run-all-tests"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:run-fixture-tests"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:run-single-test"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:run-last-test"]).to.be.true;
        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:10,代碼來源:run-tests-spec.ts

示例4: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();
        const commands: any = atom.commands;

        expect(commands.registeredCommands["omnisharp-atom:find-usages"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:go-to-implementation"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:next-usage"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:go-to-usage"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:previous-usage"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:go-to-next-usage"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:go-to-previous-usage"]).to.be.true;
        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:13,代碼來源:find-usages-spec.ts

示例5: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();

        const commands: any = atom.commands;

        expect(commands.registeredCommands["omnisharp-atom:next-solution-status"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:solution-status"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:previous-solution-status"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:stop-server"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:start-server"]).to.be.true;
        expect(commands.registeredCommands["omnisharp-atom:restart-server"]).to.be.true;
        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:13,代碼來源:solution-information-spec.ts

示例6: it

    it("formats code", () => {
        const d = restoreBuffers();
        const disposable = new CompositeDisposable();
        disposable.add(d);

        let tries = 5;
        return atom.workspace.open("simple/code-format/UnformattedClass.cs")
            .then((editor) => {
                return execute(editor);
            });

        function execute(editor: Atom.TextEditor): any {
            const promise = Omni.listener.formatRange
                .take(1)
                .toPromise()
                .then(({request}) => {
                    expect(editor.getPath()).to.be.eql(request.FileName);
                    const expected = `public class UnformattedClass{    public const int TheAnswer = 42;}`;
                    const result = editor.getText().replace(/\r|\n/g, "");
                    try {
                        expect(result).to.contain(expected);
                        tries = 0;
                    } catch (e) {
                        if (tries > 0) {
                            return execute(editor);
                        } else {
                            tries = -1;
                            throw e;
                        }
                    } finally {
                        if (tries === -1) {
                            disposable.dispose();
                            throw new Error("Failed!");
                        } else if (tries === 0) {
                            disposable.dispose();
                        }
                        tries--;
                    }
                });
            codeFormat.format();
            return promise;
        }
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:43,代碼來源:code-format-spec.ts

示例7: it

    it("adds commands", () => {
        const disposable = new CompositeDisposable();
        //const commands: any = atom.commands;

        disposable.dispose();
    });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:6,代碼來源:intellisense-spec.ts

示例8: execute

 .then(({request}) => {
     expect(editor.getPath()).to.be.eql(request.FileName);
     const expected = `public class UnformattedClass{    public const int TheAnswer = 42;}`;
     const result = editor.getText().replace(/\r|\n/g, "");
     try {
         expect(result).to.contain(expected);
         tries = 0;
     } catch (e) {
         if (tries > 0) {
             return execute(editor);
         } else {
             tries = -1;
             throw e;
         }
     } finally {
         if (tries === -1) {
             disposable.dispose();
             throw new Error("Failed!");
         } else if (tries === 0) {
             disposable.dispose();
         }
         tries--;
     }
 });
開發者ID:Member1221,項目名稱:omnisharp-atom,代碼行數:24,代碼來源:code-format-spec.ts


注:本文中的omnisharp-client.CompositeDisposable類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。