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

Side by Side Diff: Source/devtools/scripts/jsdoc-validator/tests/proto.js

Issue 419073005: DevTools: [JSDocValidator] Fix function qualified name detection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add a test Created 6 years, 5 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
« no previous file with comments | « Source/devtools/scripts/jsdoc-validator/tests/golden.dat ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 * @constructor 120 * @constructor
121 * @extends {Set.<T>} 121 * @extends {Set.<T>}
122 * @template T 122 * @template T
123 */ 123 */
124 var BadSetSubclass = function() 124 var BadSetSubclass = function()
125 { 125 {
126 } 126 }
127 127
128 BadSetSubclass.prototype = { 128 BadSetSubclass.prototype = {
129 } 129 }
130
131 var NS = {};
132
133 /**
134 * @constructor
135 * @extends {Base}
136 */
137 NS.BadSubClass = function() {}
OLDNEW
« no previous file with comments | « Source/devtools/scripts/jsdoc-validator/tests/golden.dat ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698