Home | History | Annotate | Download | only in src

Lines Matching refs:Array

347     // Allocate array for caching the columns where the actual source starts.
349 script.sourceColumnStart_ = new Array(script.lineCount());
866 // Add an Array of break points hit if any.
1154 } else if (this.body instanceof Array) {
2035 * Convert an array to its debugger protocol representation. It will convert
2036 * each array element to a protocol value.
2037 * @param {Array} array The array to format as protocol array.
2040 * @return {Array} Protocol array value.
2042 function ArrayToProtocolArray_(array, mirror_serializer) {
2044 for (var i = 0; i < array.length; i++) {
2045 json.push(ValueToProtocolValue_(array[i], mirror_serializer));