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

Side by Side Diff: Source/devtools/scripts/jsdoc-validator/tests/golden.dat

Issue 659973003: [DevTools] Disallow use of global property "document". (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:1: ERROR - @return annotation is requi red for API functions that return value 1 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:1: ERROR - "document" global prop erty is disallowed
2 document.bar();
3 ^
4
5 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:2: ERROR - "document" global prop erty is disallowed
6 window.document.bar();
7 ^
8
9 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:5: ERROR - "document" global prop erty is disallowed
10 document();
11 ^
12
13 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:6: ERROR - "document" global prop erty is disallowed
14 var x = window.document;
15 ^
16
17 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:24: ERROR - "document" global pro perty is disallowed
18 document.bar();
19 ^
20
21 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:25: ERROR - "document" global pro perty is disallowed
22 document();
23 ^
24
25 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:26: ERROR - "document" global pro perty is disallowed
26 var inner = document + bar;
27 ^
28
29 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:47: ERROR - "document" global pro perty is disallowed
30 document;
31 ^
32
33 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:48: ERROR - "document" global pro perty is disallowed
34 window.document;
35 ^
36
37 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:53: ERROR - "document" global pro perty is disallowed
38 var z = document.document;
39 ^
40
41 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/document.js:54: ERROR - "document" global pro perty is disallowed
42 window.document = bar;
43 ^
44
45 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:1: ERROR - @return annotation is required for API functions that return value
2 function badFuncNoAnnotation() { 46 function badFuncNoAnnotation() {
3 ^ 47 ^
4 48
5 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:8: ERROR - @return annotation found, y et function does not return value 49 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:8: ERROR - @return annotation fou nd, yet function does not return value
apavlov 2014/10/17 11:59:41 ha, this sucks. I have never paid attention to the
dgozman 2014/10/17 13:05:40 Done.
6 function badFuncAnnotatedButNoReturn() // ERROR - no @return annotation. 50 function badFuncAnnotatedButNoReturn() // ERROR - no @return annotation.
7 ^ 51 ^
8 52
9 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:15: ERROR - @return annotation found, yet function does not return value 53 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:15: ERROR - @return annotation fo und, yet function does not return value
10 function badFuncAnnotatedButNoReturnValue() // ERROR - no returned value. 54 function badFuncAnnotatedButNoReturnValue() // ERROR - no returned value.
11 ^ 55 ^
12 56
13 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:29: ERROR - invalid return type annota tion found - should be "@return {<type>}" 57 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:29: ERROR - invalid return type a nnotation found - should be "@return {<type>}"
14 * @returns {number} 58 * @returns {number}
15 ^ 59 ^
16 60
17 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:37: ERROR - invalid return type annota tion found - should be "@return {<type>}" 61 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:37: ERROR - invalid return type a nnotation found - should be "@return {<type>}"
18 * @return number 62 * @return number
19 ^ 63 ^
20 64
21 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:45: ERROR - Invalid @param annotation found - should be "@param {<type>} paramName" 65 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:45: ERROR - Invalid @param annota tion found - should be "@param {<type>} paramName"
22 * @param number foo 66 * @param number foo
23 ^ 67 ^
24 68
25 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:46: ERROR - Invalid @param annotation found - should be "@param {<type>} paramName" 69 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:46: ERROR - Invalid @param annota tion found - should be "@param {<type>} paramName"
26 * @param bar 70 * @param bar
27 ^ 71 ^
28 72
29 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:48: ERROR - @return annotation is requ ired for API functions that return value 73 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:48: ERROR - @return annotation is required for API functions that return value
30 function badParamAnnotationsFunc(foo, bar) // ERROR - @param's should be well-fo rmed 74 function badParamAnnotationsFunc(foo, bar) // ERROR - @param's should be well-fo rmed
31 ^ 75 ^
32 76
33 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:55: ERROR - invalid return type annota tion found - please remove, as function does not return value 77 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:55: ERROR - invalid return type a nnotation found - please remove, as function does not return value
34 * @returns {number} 78 * @returns {number}
35 ^ 79 ^
36 80
37 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:63: ERROR - invalid return type annota tion found - please remove, as function does not return value 81 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:63: ERROR - invalid return type a nnotation found - please remove, as function does not return value
38 * @returns {number} 82 * @returns {number}
39 ^ 83 ^
40 84
41 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:80: ERROR - @return annotation is requ ired for API functions that return value 85 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:80: ERROR - @return annotation is required for API functions that return value
42 badApiMethodNoAnnotation: function() // ERROR - public method. 86 badApiMethodNoAnnotation: function() // ERROR - public method.
43 ^ 87 ^
44 88
45 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:97: ERROR - @this annotation is requir ed for functions referencing 'this' 89 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:97: ERROR - @this annotation is r equired for functions referencing 'this'
46 /** 90 /**
47 ^ 91 ^
48 92
49 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:126: ERROR - @return annotation found, yet function does not return value 93 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:126: ERROR - @return annotation f ound, yet function does not return value
50 badMethodDoesNotReturnValue: function() // ERROR - does not return value. 94 badMethodDoesNotReturnValue: function() // ERROR - does not return value.
51 ^ 95 ^
52 96
53 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:134: ERROR - @return annotation found, yet function does not return value 97 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:134: ERROR - @return annotation f ound, yet function does not return value
54 badMethodDoesNotReturn: function() // ERROR - does not return. 98 badMethodDoesNotReturn: function() // ERROR - does not return.
55 ^ 99 ^
56 100
57 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:140: ERROR - invalid return type annot ation found - should be "@return {<type>}" 101 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:140: ERROR - invalid return type annotation found - should be "@return {<type>}"
58 * @returns {number} 102 * @returns {number}
59 ^ 103 ^
60 104
61 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:148: ERROR - invalid return type annot ation found - please remove, as function does not return value 105 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:148: ERROR - invalid return type annotation found - please remove, as function does not return value
62 * @returns {number} 106 * @returns {number}
63 ^ 107 ^
64 108
65 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:156: ERROR - invalid return type annot ation found - please remove, as function does not return value 109 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:156: ERROR - invalid return type annotation found - please remove, as function does not return value
66 * @returns {number} 110 * @returns {number}
67 ^ 111 ^
68 112
69 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:176: ERROR - @return annotation is req uired for API functions that return value 113 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:176: ERROR - @return annotation i s required for API functions that return value
70 badApiMethodNoAnnotation: function() // ERROR - public method. 114 badApiMethodNoAnnotation: function() // ERROR - public method.
71 ^ 115 ^
72 116
73 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:197: ERROR - @return annotation found, yet function does not return value 117 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:197: ERROR - @return annotation f ound, yet function does not return value
74 badMethodDoesNotReturnValue: function() // ERROR - does not return value. 118 badMethodDoesNotReturnValue: function() // ERROR - does not return value.
75 ^ 119 ^
76 120
77 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:205: ERROR - @return annotation found, yet function does not return value 121 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:205: ERROR - @return annotation f ound, yet function does not return value
78 badMethodDoesNotReturn: function() // ERROR - does not return. 122 badMethodDoesNotReturn: function() // ERROR - does not return.
79 ^ 123 ^
80 124
81 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:211: ERROR - invalid return type annot ation found - should be "@return {<type>}" 125 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:211: ERROR - invalid return type annotation found - should be "@return {<type>}"
82 * @returns {number} 126 * @returns {number}
83 ^ 127 ^
84 128
85 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:219: ERROR - invalid return type annot ation found - please remove, as function does not return value 129 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:219: ERROR - invalid return type annotation found - please remove, as function does not return value
86 * @returns {number} 130 * @returns {number}
87 ^ 131 ^
88 132
89 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:227: ERROR - invalid return type annot ation found - please remove, as function does not return value 133 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:227: ERROR - invalid return type annotation found - please remove, as function does not return value
90 * @returns {number} 134 * @returns {number}
91 ^ 135 ^
92 136
93 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:247: ERROR - invalid return type annot ation found - should be "@return {<type>}" 137 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:247: ERROR - invalid return type annotation found - should be "@return {<type>}"
94 * @returns {number} 138 * @returns {number}
95 ^ 139 ^
96 140
97 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:268: ERROR - @return annotation is req uired for API functions that return value 141 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:268: ERROR - @return annotation i s required for API functions that return value
98 badApiMethodNoAnnotation: function() // ERROR - public method. 142 badApiMethodNoAnnotation: function() // ERROR - public method.
99 ^ 143 ^
100 144
101 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:289: ERROR - @return annotation found, yet function does not return value 145 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:289: ERROR - @return annotation f ound, yet function does not return value
102 badMethodDoesNotReturnValue: function() // ERROR - does not return value. 146 badMethodDoesNotReturnValue: function() // ERROR - does not return value.
103 ^ 147 ^
104 148
105 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:297: ERROR - @return annotation found, yet function does not return value 149 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:297: ERROR - @return annotation f ound, yet function does not return value
106 badMethodDoesNotReturn: function() // ERROR - does not return. 150 badMethodDoesNotReturn: function() // ERROR - does not return.
107 ^ 151 ^
108 152
109 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:303: ERROR - invalid return type annot ation found - should be "@return {<type>}" 153 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:303: ERROR - invalid return type annotation found - should be "@return {<type>}"
110 * @returns {number} 154 * @returns {number}
111 ^ 155 ^
112 156
113 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:311: ERROR - invalid return type annot ation found - should be "@return {<type>}" 157 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:311: ERROR - invalid return type annotation found - should be "@return {<type>}"
114 * @returns number 158 * @returns number
115 ^ 159 ^
116 160
117 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:319: ERROR - invalid return type annot ation found - please remove, as function does not return value 161 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:319: ERROR - invalid return type annotation found - please remove, as function does not return value
118 * @returns {number} 162 * @returns {number}
119 ^ 163 ^
120 164
121 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:327: ERROR - invalid return type annot ation found - please remove, as function does not return value 165 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:327: ERROR - invalid return type annotation found - please remove, as function does not return value
122 * @returns {number} 166 * @returns {number}
123 ^ 167 ^
124 168
125 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:335: ERROR - Invalid @param annotation found - should be "@param {<type>} paramName" 169 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:335: ERROR - Invalid @param annot ation found - should be "@param {<type>} paramName"
126 * @param number foo 170 * @param number foo
127 ^ 171 ^
128 172
129 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:336: ERROR - Invalid @param annotation found - should be "@param {<type>} paramName" 173 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:336: ERROR - Invalid @param annot ation found - should be "@param {<type>} paramName"
130 * @param bar 174 * @param bar
131 ^ 175 ^
132 176
133 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:338: ERROR - @return annotation is req uired for API functions that return value 177 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:338: ERROR - @return annotation i s required for API functions that return value
134 badMethodParamAnnotations: function(foo, bar) // ERROR - @param's should be well-formed 178 badMethodParamAnnotations: function(foo, bar) // ERROR - @param's should be well-formed
135 ^ 179 ^
136 180
137 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:357: ERROR - No @param JSDoc tag found for parameters: [b] 181 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:357: ERROR - No @param JSDoc tag found for parameters: [b]
138 /** 182 /**
139 ^ 183 ^
140 184
141 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/function.js:363: ERROR - No @param JSDoc tag found for parameters: [b,c] 185 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/function.js:363: ERROR - No @param JSDoc tag found for parameters: [b,c]
142 /** 186 /**
143 ^ 187 ^
144 188
145 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:8: ERROR - No __proto__ assigned for type DerivedNoProto having @extends 189 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:8: ERROR - No __proto__ assigned for type DerivedNoProto having @extends
146 * @extends {Base} 190 * @extends {Base}
147 ^ 191 ^
148 192
149 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:10: ERROR - Type DerivedNoProto extends B ase but does not properly invoke its constructor 193 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:10: ERROR - Type DerivedNoProto exte nds Base but does not properly invoke its constructor
150 DerivedNoProto = function() {} 194 DerivedNoProto = function() {}
151 ^ 195 ^
152 196
153 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:16: ERROR - Type DerivedBadProto extends Base but does not properly invoke its constructor 197 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:16: ERROR - Type DerivedBadProto ext ends Base but does not properly invoke its constructor
154 DerivedBadProto = function() {} 198 DerivedBadProto = function() {}
155 ^ 199 ^
156 200
157 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:19: ERROR - __proto__ value is not a prot otype 201 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:19: ERROR - __proto__ value is not a prototype
158 __proto__: Base 202 __proto__: Base
159 ^ 203 ^
160 204
161 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:28: ERROR - __proto__ defined for interfa ce InterfaceWithProto 205 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:28: ERROR - __proto__ defined for in terface InterfaceWithProto
162 __proto__: Base.prototype 206 __proto__: Base.prototype
163 ^ 207 ^
164 208
165 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:37: ERROR - No @extends annotation for Pr otoNoExtends extending Base 209 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:37: ERROR - No @extends annotation f or ProtoNoExtends extending Base
166 __proto__: Base.prototype 210 __proto__: Base.prototype
167 ^ 211 ^
168 212
169 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:44: ERROR - Type ProtoNotSameAsExtends ex tends Base but does not properly invoke its constructor 213 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:44: ERROR - Type ProtoNotSameAsExten ds extends Base but does not properly invoke its constructor
170 ProtoNotSameAsExtends = function() {} 214 ProtoNotSameAsExtends = function() {}
171 ^ 215 ^
172 216
173 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:47: ERROR - Supertype does not match Base declared in @extends for ProtoNotSameAsExtends (line 42) 217 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:47: ERROR - Supertype does not match Base declared in @extends for ProtoNotSameAsExtends (line 42)
174 __proto__: Object.prototype 218 __proto__: Object.prototype
175 ^ 219 ^
176 220
177 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:52: ERROR - No __proto__ assigned for typ e ProtoNotObjectLiteral having @extends 221 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:52: ERROR - No __proto__ assigned fo r type ProtoNotObjectLiteral having @extends
178 * @extends {Base} 222 * @extends {Base}
179 ^ 223 ^
180 224
181 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:54: ERROR - Type ProtoNotObjectLiteral ex tends Base but does not properly invoke its constructor 225 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:54: ERROR - Type ProtoNotObjectLiter al extends Base but does not properly invoke its constructor
182 ProtoNotObjectLiteral = function() {} 226 ProtoNotObjectLiteral = function() {}
183 ^ 227 ^
184 228
185 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:56: ERROR - @extends found for type Proto NotObjectLiteral but its prototype is not an object containing __proto__ 229 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:56: ERROR - @extends found for type ProtoNotObjectLiteral but its prototype is not an object containing __proto__
186 ProtoNotObjectLiteral.prototype = Object; 230 ProtoNotObjectLiteral.prototype = Object;
187 ^ 231 ^
188 232
189 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:62: ERROR - Type DerivedNoSuperCall exten ds Base but does not properly invoke its constructor 233 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:62: ERROR - Type DerivedNoSuperCall extends Base but does not properly invoke its constructor
190 DerivedNoSuperCall = function() { 234 DerivedNoSuperCall = function() {
191 ^ 235 ^
192 236
193 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:73: ERROR - Type DerivedBadSuperCall exte nds Base but does not properly invoke its constructor 237 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:73: ERROR - Type DerivedBadSuperCall extends Base but does not properly invoke its constructor
194 DerivedBadSuperCall = function() { 238 DerivedBadSuperCall = function() {
195 ^ 239 ^
196 240
197 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:121: ERROR - No __proto__ assigned for ty pe BadSetSubclass having @extends 241 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:121: ERROR - No __proto__ assigned f or type BadSetSubclass having @extends
198 * @extends {Set.<T>} 242 * @extends {Set.<T>}
199 ^ 243 ^
200 244
201 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:124: ERROR - Type BadSetSubclass extends Set but does not properly invoke its constructor 245 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:124: ERROR - Type BadSetSubclass ext ends Set but does not properly invoke its constructor
202 var BadSetSubclass = function() 246 var BadSetSubclass = function()
203 ^ 247 ^
204 248
205 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:135: ERROR - No __proto__ assigned for ty pe NS.BadSubClass having @extends 249 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:135: ERROR - No __proto__ assigned f or type NS.BadSubClass having @extends
206 * @extends {Base} 250 * @extends {Base}
207 ^ 251 ^
208 252
209 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/proto.js:137: ERROR - Type NS.BadSubClass extends Base but does not properly invoke its constructor 253 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/proto.js:137: ERROR - Type NS.BadSubClass ext ends Base but does not properly invoke its constructor
210 NS.BadSubClass = function() {} 254 NS.BadSubClass = function() {}
211 ^ 255 ^
212 256
213 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:19: ERROR - @this annotation is required f or functions referencing 'this' 257 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:19: ERROR - @this annotation is requi red for functions referencing 'this'
214 function badInnerCallback() { 258 function badInnerCallback() {
215 ^ 259 ^
216 260
217 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:24: ERROR - @this annotation is required f or functions referencing 'this' 261 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:24: ERROR - @this annotation is requi red for functions referencing 'this'
218 function badCallbackInCtor() { 262 function badCallbackInCtor() {
219 ^ 263 ^
220 264
221 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:54: ERROR - @this annotation is required f or functions referencing 'this' 265 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:54: ERROR - @this annotation is requi red for functions referencing 'this'
222 function badCallbackInMethod() { 266 function badCallbackInMethod() {
223 ^ 267 ^
224 268
225 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:73: ERROR - @this annotation is required f or functions referencing 'this' 269 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:73: ERROR - @this annotation is requi red for functions referencing 'this'
226 function badInnerCallback() { 270 function badInnerCallback() {
227 ^ 271 ^
228 272
229 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:78: ERROR - @this annotation is required f or functions referencing 'this' 273 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:78: ERROR - @this annotation is requi red for functions referencing 'this'
230 function badCallbackInCtor() { 274 function badCallbackInCtor() {
231 ^ 275 ^
232 276
233 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:98: ERROR - @this annotation is required f or functions referencing 'this' 277 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:98: ERROR - @this annotation is requi red for functions referencing 'this'
234 function badCallbackInMethod() { 278 function badCallbackInMethod() {
235 ^ 279 ^
236 280
237 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:121: ERROR - @this annotation is required for functions referencing 'this' 281 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:121: ERROR - @this annotation is requ ired for functions referencing 'this'
238 function badInnerCallback() { 282 function badInnerCallback() {
239 ^ 283 ^
240 284
241 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:126: ERROR - @this annotation is required for functions referencing 'this' 285 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:126: ERROR - @this annotation is requ ired for functions referencing 'this'
242 function badCallbackInCtor() { 286 function badCallbackInCtor() {
243 ^ 287 ^
244 288
245 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:146: ERROR - @this annotation is required for functions referencing 'this' 289 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:146: ERROR - @this annotation is requ ired for functions referencing 'this'
246 function badCallbackInMethod() { 290 function badCallbackInMethod() {
247 ^ 291 ^
248 292
249 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:153: ERROR - @this annotation found for fu nction not referencing 'this' 293 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:153: ERROR - @this annotation found f or function not referencing 'this'
250 function callbackNotReferencingThis() { 294 function callbackNotReferencingThis() {
251 ^ 295 ^
252 296
253 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:191: ERROR - Member function can only be b ound to 'this' as the receiver 297 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:191: ERROR - Member function can only be bound to 'this' as the receiver
254 var badMemberBinding1 = this.memberTwo.bind(null); // ERROR - Member not bound to |this| receiver. 298 var badMemberBinding1 = this.memberTwo.bind(null); // ERROR - Member not bound to |this| receiver.
255 ^ 299 ^
256 300
257 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:192: ERROR - Member function can only be b ound to 'this' as the receiver 301 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:192: ERROR - Member function can only be bound to 'this' as the receiver
258 var badMemberBinding2 = this.memberTwo.bind(bar); // ERROR - Member not bound to |this| receiver. 302 var badMemberBinding2 = this.memberTwo.bind(bar); // ERROR - Member not bound to |this| receiver.
259 ^ 303 ^
260 304
261 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:217: ERROR - Receiver not specified for a function referencing 'this' 305 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:217: ERROR - Receiver not specified f or a function referencing 'this'
262 callbackWithThis(); // ERROR - No receiver. 306 callbackWithThis(); // ERROR - No receiver.
263 ^ 307 ^
264 308
265 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:218: ERROR - Receiver not specified for a function referencing 'this' 309 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:218: ERROR - Receiver not specified f or a function referencing 'this'
266 callbackWithThis.call(); // ERROR - No receiver. 310 callbackWithThis.call(); // ERROR - No receiver.
267 ^ 311 ^
268 312
269 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:219: ERROR - Receiver not specified for a function referencing 'this' 313 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:219: ERROR - Receiver not specified f or a function referencing 'this'
270 callbackWithThis.call(null); // ERROR - No receiver. 314 callbackWithThis.call(null); // ERROR - No receiver.
271 ^ 315 ^
272 316
273 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:220: ERROR - Receiver not specified for a function referencing 'this' 317 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:220: ERROR - Receiver not specified f or a function referencing 'this'
274 callbackWithThis.apply(); // ERROR - No receiver. 318 callbackWithThis.apply(); // ERROR - No receiver.
275 ^ 319 ^
276 320
277 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:221: ERROR - Receiver not specified for a function referencing 'this' 321 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:221: ERROR - Receiver not specified f or a function referencing 'this'
278 callbackWithThis.apply(null); // ERROR - No receiver. 322 callbackWithThis.apply(null); // ERROR - No receiver.
279 ^ 323 ^
280 324
281 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:222: ERROR - Receiver specified for a func tion not referencing 'this' 325 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:222: ERROR - Receiver specified for a function not referencing 'this'
282 callbackNoThis.call(this); // ERROR - Function has no @this annotation. 326 callbackNoThis.call(this); // ERROR - Function has no @this annotation.
283 ^ 327 ^
284 328
285 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:223: ERROR - Receiver specified for a func tion not referencing 'this' 329 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:223: ERROR - Receiver specified for a function not referencing 'this'
286 callbackNoThis.call(foo); // ERROR - Function has no @this annotation. 330 callbackNoThis.call(foo); // ERROR - Function has no @this annotation.
287 ^ 331 ^
288 332
289 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:224: ERROR - Receiver specified for a func tion not referencing 'this' 333 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:224: ERROR - Receiver specified for a function not referencing 'this'
290 callbackNoThis.apply(this); // ERROR - Function has no @this annotation. 334 callbackNoThis.apply(this); // ERROR - Function has no @this annotation.
291 ^ 335 ^
292 336
293 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:225: ERROR - Receiver specified for a func tion not referencing 'this' 337 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:225: ERROR - Receiver specified for a function not referencing 'this'
294 callbackNoThis.bind(this); // ERROR - Function has no @this annotation. 338 callbackNoThis.bind(this); // ERROR - Function has no @this annotation.
295 ^ 339 ^
296 340
297 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:227: ERROR - Function referencing 'this' u sed as argument without a receiver. This check can be suppressed using @suppress ReceiverCheck annotation on function declaration. 341 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:227: ERROR - Function referencing 'th is' used as argument without a receiver. This check can be suppressed using @sup pressReceiverCheck annotation on function declaration.
298 this.memberTwo(callbackWithThis); // ERROR - Used as argument with no bo und receiver. 342 this.memberTwo(callbackWithThis); // ERROR - Used as argument with no bo und receiver.
299 ^ 343 ^
300 344
301 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:228: ERROR - Receiver not specified for a function referencing 'this' 345 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:228: ERROR - Receiver not specified f or a function referencing 'this'
302 this.memberTwo(callbackWithThis.bind(null, 2)); // ERROR - Used as argum ent with no bound receiver (null means "no receiver"). 346 this.memberTwo(callbackWithThis.bind(null, 2)); // ERROR - Used as argum ent with no bound receiver (null means "no receiver").
303 ^ 347 ^
304 348
305 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:229: ERROR - Receiver specified for a func tion not referencing 'this' 349 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:229: ERROR - Receiver specified for a function not referencing 'this'
306 this.memberTwo(callbackNoThis.bind(this)); // ERROR - Bound to a receive r but has no @this annotation. 350 this.memberTwo(callbackNoThis.bind(this)); // ERROR - Bound to a receive r but has no @this annotation.
307 ^ 351 ^
308 352
309 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:230: ERROR - Receiver specified for a func tion not referencing 'this' 353 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:230: ERROR - Receiver specified for a function not referencing 'this'
310 this.memberTwo(callbackNoThis.bind(foo)); // ERROR - Bound to a receiver but has no @this annotation. 354 this.memberTwo(callbackNoThis.bind(foo)); // ERROR - Bound to a receiver but has no @this annotation.
311 ^ 355 ^
312 356
313 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:237: ERROR - Function referencing 'this' u sed as argument without a receiver. This check can be suppressed using @suppress ReceiverCheck annotation on function declaration. 357 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:237: ERROR - Function referencing 'th is' used as argument without a receiver. This check can be suppressed using @sup pressReceiverCheck annotation on function declaration.
314 array.forEach(callbackWithThis); // ERROR - No receiver. 358 array.forEach(callbackWithThis); // ERROR - No receiver.
315 ^ 359 ^
316 360
317 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:238: ERROR - Function not referencing 'thi s' used as argument with a receiver. This check can be suppressed using @suppres sReceiverCheck annotation on function declaration. 361 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:238: ERROR - Function not referencing 'this' used as argument with a receiver. This check can be suppressed using @su ppressReceiverCheck annotation on function declaration.
318 array.forEach(callbackNoThis, this); // ERROR - Receiver for callback wi th no @this annotation. 362 array.forEach(callbackNoThis, this); // ERROR - Receiver for callback wi th no @this annotation.
319 ^ 363 ^
320 364
321 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:247: ERROR - Function not referencing 'thi s' used as argument with a receiver. This check can be suppressed using @suppres sReceiverCheck annotation on function declaration. 365 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:247: ERROR - Function not referencing 'this' used as argument with a receiver. This check can be suppressed using @su ppressReceiverCheck annotation on function declaration.
322 element.addEventListener("click", callbackNoThis, this); // ERROR. 366 element.addEventListener("click", callbackNoThis, this); // ERROR.
323 ^ 367 ^
324 368
325 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:253: ERROR - Function referencing 'this' u sed as argument without a receiver. This check can be suppressed using @suppress ReceiverCheck annotation on function declaration. 369 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:253: ERROR - Function referencing 'th is' used as argument without a receiver. This check can be suppressed using @sup pressReceiverCheck annotation on function declaration.
326 element.addEventListener("click", callbackWithThis, true); // ERROR. 370 element.addEventListener("click", callbackWithThis, true); // ERROR.
327 ^ 371 ^
328 372
329 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:254: ERROR - Function referencing 'this' u sed as argument without a receiver. This check can be suppressed using @suppress ReceiverCheck annotation on function declaration. 373 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:254: ERROR - Function referencing 'th is' used as argument without a receiver. This check can be suppressed using @sup pressReceiverCheck annotation on function declaration.
330 element.addEventListener("click", callbackWithThis, false); // ERROR. 374 element.addEventListener("click", callbackWithThis, false); // ERROR.
331 ^ 375 ^
332 376
333 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:268: ERROR - @this annotation is required for functions referencing 'this' 377 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:268: ERROR - @this annotation is requ ired for functions referencing 'this'
334 function callbackReferencingThisNotAnnotated() 378 function callbackReferencingThisNotAnnotated()
335 ^ 379 ^
336 380
337 /usr/local/google/home/apavlov/dev/blink/src/third_party/WebKit/Source/devtools/ scripts/jsdoc-validator/tests/this.js:277: ERROR - @this annotation found for fu nction not referencing 'this' 381 /usr/local/google/home/dgozman/chromium-blink/src/third_party/WebKit/Source/devt ools/scripts/jsdoc-validator/tests/this.js:277: ERROR - @this annotation found f or function not referencing 'this'
338 function callbackNotReferencingThisAnnotated() 382 function callbackNotReferencingThisAnnotated()
339 ^ 383 ^
340 384
341 Total errors: 85 385 Total errors: 96
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698