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

Side by Side Diff: third_party/WebKit/Source/devtools/scripts/jsdoc_validator/tests/this.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 this.foo = this.foo + 1; // OK - outside of function. 1 this.foo = this.foo + 1; // OK - outside of function.
2 2
3 function f() { 3 function f() {
4 this.foo = this.foo + 1; // OK - global |this|. 4 this.foo = this.foo + 1; // OK - global |this|.
5 } 5 }
6 6
7 /** 7 /**
8 * @constructor 8 * @constructor
9 */ 9 */
10 function TypeOne() { 10 function TypeOne() {
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 /** 318 /**
319 * @param {string} a 319 * @param {string} a
320 */ 320 */
321 function testArrowFunctionReferencingThisMissingAnnotation(a) 321 function testArrowFunctionReferencingThisMissingAnnotation(a)
322 { 322 {
323 (x => this._q.push(x))(a); 323 (x => this._q.push(x))(a);
324 } 324 }
325 325
326 } 326 }
327 }; 327 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698