File indexing completed on 2024-11-17 03:41:10

0001 // test closed comment
0002 view.setCursorPosition(1, document.lineLength(1));
0003 if (document.isComment(1, 10) && !document.isCode(1, 10))
0004   view.type("PASS");
0005 else
0006   view.type("FAIL");
0007 
0008 // test open comment
0009 view.setCursorPosition(2, document.lineLength(2));
0010 if (document.isComment(2, document.lineLength(2) - 1))
0011   view.type("PASS");
0012 else
0013   view.type("FAIL");