add some debug methods

This commit is contained in:
Mohamed Hegazy
2014-08-13 11:26:35 -07:00
parent 901e8a83be
commit 69c653d5e8

View File

@@ -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 {