addLinesBeforeIdx method
Adds a set of line before the specified index.
Implementation
void addLinesBeforeIdx(AFCommandContext context, int idx, List<String> toInsert) {
lines.insertAll(idx, toInsert);
}
Adds a set of line before the specified index.
void addLinesBeforeIdx(AFCommandContext context, int idx, List<String> toInsert) {
lines.insertAll(idx, toInsert);
}