Home | History | Annotate | Download | only in src

Lines Matching defs:source

2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
227 result = 'Source ' + body.script.name + ' compiled:\n';
228 var source = body.script.source;
229 if (!(source[source.length - 1] == '\n')) {
230 result += source;
232 result += source.substring(0, source.length - 1);
274 // Create an underline with a caret pointing to the source position. If the
275 // source contains a tab character the underline will have a tab character in
287 // Return the source line text with the underline beneath.
432 case 'source':
858 // If we list forwards, we will start listing after the last source end
862 // source start line. Set it to start from 1 lines before the current
888 // Create a JSON request for the source command.
891 var request = this.createRequest('source');
909 // Request source arround current source location.
1561 print('l[ist] - list the source code around for the current pc');
1562 print('l[ist] [- | <start>,<end>] - list the specified range of source code');
1563 print('source [from line [num lines]]');
2160 case 'source':
2161 // Get the source from the response.
2162 var source = body.source;
2164 var lines = source.split('\n');