Updated test case and added comment

This commit is contained in:
Paul van Brenk
2014-11-19 15:05:07 -08:00
parent 5778094428
commit 629ea86043
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -4693,6 +4693,7 @@ module ts {
case SyntaxKind.ImportDeclaration:
return SemanticMeaning.Value | SemanticMeaning.Type | SemanticMeaning.Namespace;
// An external module can be a Value
case SyntaxKind.SourceFile:
return SemanticMeaning.Namespace | SemanticMeaning.Value;
}
+2 -1
View File
@@ -7,4 +7,5 @@
////import a = require("AA/B/*1*/B");
goTo.marker('1');
verify.quickInfoIs('module a');
verify.quickInfoIs('module a');
verify.referencesCountIs(0);