Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: Source/core/inspector/InjectedScriptExterns.js

Issue 466243002: Support merged Dart-JS callstacks (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/dartium
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 /** @type {number} */ 128 /** @type {number} */
129 this.sourceID; 129 this.sourceID;
130 /** @type {number} */ 130 /** @type {number} */
131 this.line; 131 this.line;
132 /** @type {number} */ 132 /** @type {number} */
133 this.column; 133 this.column;
134 /** @type {*} */ 134 /** @type {*} */
135 this.thisObject; 135 this.thisObject;
136 /** @type {string} */ 136 /** @type {string} */
137 this.stepInPositions; 137 this.stepInPositions;
138 /** @type {number} */
139 this.framePointerHigh;
140 /** @type {number} */
141 this.framePointerLow;
138 } 142 }
139 143
140 /** 144 /**
141 * @param {number} index 145 * @param {number} index
142 */ 146 */
143 JavaScriptCallFrame.prototype.scopeType = function(index) { } 147 JavaScriptCallFrame.prototype.scopeType = function(index) { }
144 148
145 JavaScriptCallFrame.prototype.restart = function() { } 149 JavaScriptCallFrame.prototype.restart = function() { }
146 150
147 /** 151 /**
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 // FIXME: Remove once ES6 is supported natively by JS compiler. 187 // FIXME: Remove once ES6 is supported natively by JS compiler.
184 188
185 /** @typedef {string} */ 189 /** @typedef {string} */
186 var symbol; 190 var symbol;
187 191
188 /** 192 /**
189 * @param {string} description 193 * @param {string} description
190 * @return {symbol} 194 * @return {symbol}
191 */ 195 */
192 function Symbol(description) {} 196 function Symbol(description) {}
OLDNEW
« no previous file with comments | « Source/core/inspector/AsyncCallStackTracker.cpp ('k') | Source/core/inspector/InjectedScriptSource.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698