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

Side by Side Diff: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/proto.js

Issue 2441163002: DevTools: clean up scripts folder (Closed)
Patch Set: Fix sys.path for chromevox to load rjsmin Created 4 years, 1 month 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
OLDNEW
1 /** 1 /**
2 * @constructor 2 * @constructor
3 */ 3 */
4 Base = function() {} 4 Base = function() {}
5 5
6 /** 6 /**
7 * @constructor 7 * @constructor
8 * @extends {Base} 8 * @extends {Base}
9 */ 9 */
10 DerivedNoProto = function() {} 10 DerivedNoProto = function() {}
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 BadSetSubclass.prototype = { 128 BadSetSubclass.prototype = {
129 } 129 }
130 130
131 var NS = {}; 131 var NS = {};
132 132
133 /** 133 /**
134 * @constructor 134 * @constructor
135 * @extends {Base} 135 * @extends {Base}
136 */ 136 */
137 NS.BadSubClass = function() {} 137 NS.BadSubClass = function() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698