From 69c653d5e88d6dcc064c5094a7693e1aaef7ae58 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Wed, 13 Aug 2014 11:26:35 -0700 Subject: [PATCH] add some debug methods --- tests/cases/fourslash/fourslash.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/cases/fourslash/fourslash.ts b/tests/cases/fourslash/fourslash.ts index 62d071e885e..e46a3404d85 100644 --- a/tests/cases/fourslash/fourslash.ts +++ b/tests/cases/fourslash/fourslash.ts @@ -180,7 +180,7 @@ module FourSlashInterface { } public referencesCountIs(count: number) { - FourSlash.currentTestState.verifyReferencesCountIs(count); + FourSlash.currentTestState.verifyReferencesCountIs(count, false); } public implementorsCountIs(count: number) { @@ -484,6 +484,14 @@ module FourSlashInterface { public printScriptLexicalStructureItems() { FourSlash.currentTestState.printScriptLexicalStructureItems(); } + + public printReferences() { + FourSlash.currentTestState.printReferences(); + } + + public printContext() { + FourSlash.currentTestState.printContext(); + } } export class format {