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

Side by Side Diff: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/function.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 function badFuncNoAnnotation() { 1 function badFuncNoAnnotation() {
2 return 1; // ERROR - no @return annotation. 2 return 1; // ERROR - no @return annotation.
3 } 3 }
4 4
5 /** 5 /**
6 * @return {number} 6 * @return {number}
7 */ 7 */
8 function badFuncAnnotatedButNoReturn() // ERROR - no @return annotation. 8 function badFuncAnnotatedButNoReturn() // ERROR - no @return annotation.
9 { 9 {
10 } 10 }
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 function FuncInterface() 371 function FuncInterface()
372 { 372 {
373 } 373 }
374 374
375 FuncInterface.prototype = { 375 FuncInterface.prototype = {
376 /** 376 /**
377 * @return {number} 377 * @return {number}
378 */ 378 */
379 returnNumber: function() { } 379 returnNumber: function() { }
380 } 380 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698