mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
Address code review : add test case for inside ambient module declaration and single quote
This commit is contained in:
@@ -2,8 +2,14 @@
|
||||
|
||||
//// declare module "http" {
|
||||
//// var x;
|
||||
//// /*1*/
|
||||
//// }
|
||||
//// /**/
|
||||
//// declare module 'https' {
|
||||
//// }
|
||||
//// /*2*/
|
||||
|
||||
goTo.marker();
|
||||
goTo.marker("1");
|
||||
verify.not.completionListContains("http");
|
||||
goTo.marker("2");
|
||||
verify.not.completionListContains("http");
|
||||
verify.not.completionListContains("https");
|
||||
|
||||
Reference in New Issue
Block a user