Home | History | Annotate | Download | only in src

Lines Matching full:underline

243   // Create an underline with a caret pointing to the source position. If the
244 // source contains a tab character the underline will have a tab character in
245 // the same place otherwise the underline will have a space character.
246 var underline = '';
249 underline += '\t';
251 underline += ' ';
254 underline += '^';
256 // Return the source line text with the underline beneath.
257 return source_text + '\n' + underline;