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


TypeScript CompositeDisposable.dispose方法代碼示例

本文整理匯總了TypeScript中rx.CompositeDisposable.dispose方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript CompositeDisposable.dispose方法的具體用法?TypeScript CompositeDisposable.dispose怎麽用?TypeScript CompositeDisposable.dispose使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在rx.CompositeDisposable的用法示例。


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

示例1: it

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

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

示例2: runs

        runs(() => {
            var commands: any = atom.commands;

            expect(commands.registeredCommands['omnisharp-atom:navigate-up']).toBeTruthy();
            expect(commands.registeredCommands['omnisharp-atom:navigate-down']).toBeTruthy();
            disposable.dispose();
        });
開發者ID:RichiCoder1,項目名稱:omnisharp-atom,代碼行數:7,代碼來源:navigate-up-down-spec.ts

示例3: runs

        runs(() => {
            var commands: any = atom.commands;

            expect(commands.registeredCommands['omnisharp-atom:intellisense-dot']).toBeTruthy();
            expect(commands.registeredCommands['omnisharp-atom:intellisense-space']).toBeTruthy();
            expect(commands.registeredCommands['omnisharp-atom:intellisense-semicolon']).toBeTruthy();
            disposable.dispose();
        });
開發者ID:RichiCoder1,項目名稱:omnisharp-atom,代碼行數:8,代碼來源:intellisense-spec.ts

示例4: runs

        runs(() => {
            var commands: any = atom.commands;

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

示例5: return

 return () => {
   bag.dispose();
   if (input) {
     input.removeAllListeners();
   }
   if (output) {
     output.removeAllListeners();
   }
 };
開發者ID:d6u,項目名稱:dev-runner,代碼行數:9,代碼來源:utils.ts

示例6: 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:Coohack,項目名稱:omnisharp-atom,代碼行數:10,代碼來源:run-tests-spec.ts

示例7: runs

        runs(() => {
            var commands: any = atom.commands;

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

示例8: runs

        runs(() => {
            var commands: any = atom.commands;

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


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