removeCommentsFromLine method
Strips comments (trailing or whole-line).
Implementation
String removeCommentsFromLine(String line, {bool includeQuotes = false}) =>
line.replaceAll(includeQuotes ? _commentWithQuotes : _comment, '').trim();
Strips comments (trailing or whole-line).
String removeCommentsFromLine(String line, {bool includeQuotes = false}) =>
line.replaceAll(includeQuotes ? _commentWithQuotes : _comment, '').trim();