能否在给定范围内专门标注一行或者让标注者在Ruta中运行n次post这个关键字?
Can we specifically annotate a line within given range or ask line annotator to run for n times post this keyword in Ruta?
BLOCK(structure) Line{}{
Line{-> TestLine};
}
此代码将用 TestLine
注释所有行。这可以注释 first 10 lines
或说 n number of lines
吗?或者我们可以要求它在遇到任何特定的 keyword
时停止进一步的注释,或者一旦遇到 keyword
就开始注释吗?
您可以使用变量来存储您要匹配的次数,然后根据该次数进行注释。请参阅文档,第 variables.
部分
注释前 4 行的简单示例是:
DECLARE TestLine;
INT counter;
Line{counter<4 -> TestLine, counter = counter+1};
BLOCK(structure) Line{}{
Line{-> TestLine};
}
此代码将用 TestLine
注释所有行。这可以注释 first 10 lines
或说 n number of lines
吗?或者我们可以要求它在遇到任何特定的 keyword
时停止进一步的注释,或者一旦遇到 keyword
就开始注释吗?
您可以使用变量来存储您要匹配的次数,然后根据该次数进行注释。请参阅文档,第 variables.
部分注释前 4 行的简单示例是:
DECLARE TestLine;
INT counter;
Line{counter<4 -> TestLine, counter = counter+1};