本文整理汇总了TypeScript中vs/editor/contrib/comment/common/lineCommentCommand.LineCommentCommand._analyzeLines方法的典型用法代码示例。如果您正苦于以下问题:TypeScript LineCommentCommand._analyzeLines方法的具体用法?TypeScript LineCommentCommand._analyzeLines怎么用?TypeScript LineCommentCommand._analyzeLines使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vs/editor/contrib/comment/common/lineCommentCommand.LineCommentCommand
的用法示例。
在下文中一共展示了LineCommentCommand._analyzeLines方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('_analyzeLines', function () {
var r: IPreflightData;
r = LineCommentCommand._analyzeLines(Type.Toggle, createSimpleModel([
'\t\t',
' ',
' c',
'\t\td'
]), createBasicLinePreflightData(['//', 'rem', '!@#', '!@#']), 1);
assert.equal(r.shouldRemoveComments, false);
// Does not change `commentStr`
assert.equal(r.lines[0].commentStr, '//');
assert.equal(r.lines[1].commentStr, 'rem');
assert.equal(r.lines[2].commentStr, '!@#');
assert.equal(r.lines[3].commentStr, '!@#');
// Fills in `isWhitespace`
assert.equal(r.lines[0].ignore, true);
assert.equal(r.lines[1].ignore, true);
assert.equal(r.lines[2].ignore, false);
assert.equal(r.lines[3].ignore, false);
// Fills in `commentStrOffset`
assert.equal(r.lines[0].commentStrOffset, 2);
assert.equal(r.lines[1].commentStrOffset, 4);
assert.equal(r.lines[2].commentStrOffset, 4);
assert.equal(r.lines[3].commentStrOffset, 2);
r = LineCommentCommand._analyzeLines(Type.Toggle, createSimpleModel([
'\t\t',
' rem ',
' !@# c',
'\t\t!@#d'
]), createBasicLinePreflightData(['//', 'rem', '!@#', '!@#']), 1);
assert.equal(r.shouldRemoveComments, true);
// Does not change `commentStr`
assert.equal(r.lines[0].commentStr, '//');
assert.equal(r.lines[1].commentStr, 'rem');
assert.equal(r.lines[2].commentStr, '!@#');
assert.equal(r.lines[3].commentStr, '!@#');
// Fills in `isWhitespace`
assert.equal(r.lines[0].ignore, true);
assert.equal(r.lines[1].ignore, false);
assert.equal(r.lines[2].ignore, false);
assert.equal(r.lines[3].ignore, false);
// Fills in `commentStrOffset`
assert.equal(r.lines[0].commentStrOffset, 2);
assert.equal(r.lines[1].commentStrOffset, 4);
assert.equal(r.lines[2].commentStrOffset, 4);
assert.equal(r.lines[3].commentStrOffset, 2);
// Fills in `commentStrLength`
assert.equal(r.lines[0].commentStrLength, 2);
assert.equal(r.lines[1].commentStrLength, 4);
assert.equal(r.lines[2].commentStrLength, 4);
assert.equal(r.lines[3].commentStrLength, 3);
});