File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2025,9 +2025,9 @@ module ts {
20252025 return true ;
20262026 }
20272027 else {
2028- // is unterminated multiline comment
2029- return text . charCodeAt ( comment . end - 1 ) ! == CharacterCodes . slash &&
2030- text . charCodeAt ( comment . end - 2 ) !== CharacterCodes . asterisk ;
2028+ // is unterminated multi-line comment
2029+ return ! ( text . charCodeAt ( comment . end - 1 ) = == CharacterCodes . slash &&
2030+ text . charCodeAt ( comment . end - 2 ) === CharacterCodes . asterisk ) ;
20312031 }
20322032 }
20332033 return false ;
Original file line number Diff line number Diff line change 1010
1111//// {| "name": "5" |}/* */
1212
13+ /////* {| "name": "6" |}
14+
1315goTo . marker ( "1" ) ;
1416verify . completionListIsEmpty ( ) ;
1517
@@ -22,5 +24,8 @@ verify.completionListIsEmpty();
2224goTo . marker ( "4" ) ;
2325verify . not . completionListIsEmpty ( ) ;
2426
25- //goTo.marker("5");
26- //verify.not.completionListIsEmpty();
27+ goTo . marker ( "5" ) ;
28+ verify . not . completionListIsEmpty ( ) ;
29+
30+ goTo . marker ( "6" ) ;
31+ verify . completionListIsEmpty ( ) ;
You can’t perform that action at this time.
0 commit comments