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

Side by Side Diff: test/inspector/debugger/object-preview-internal-properties-expected.txt

Issue 2672213002: [inspector] introduced v8::debug::EntriesPreview for inspector (Closed)
Patch Set: addressed comments Created 3 years, 10 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
« no previous file with comments | « src/runtime/runtime-collections.cc ('k') | test/inspector/runtime/internal-properties.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Check internal properties reported in object preview. 1 Check internal properties reported in object preview.
2 2
3 Running test: boxedObjects 3 Running test: boxedObjects
4 expression: new Number(239) 4 expression: new Number(239)
5 { 5 {
6 name : [[PrimitiveValue]] 6 name : [[PrimitiveValue]]
7 type : number 7 type : number
8 value : 239 8 value : 239
9 } 9 }
10 10
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 value : 0 156 value : 0
157 } 157 }
158 { 158 {
159 name : [[IteratorKind]] 159 name : [[IteratorKind]]
160 type : string 160 type : string
161 value : entries 161 value : entries
162 } 162 }
163 [[Entries]]: 163 [[Entries]]:
164 [ 164 [
165 [0] : { 165 [0] : {
166 value : { 166 key : {
167 description : Array(2) 167 description : 1
168 overflow : false 168 overflow : false
169 properties : [ 169 properties : [
170 [0] : {
171 name : 0
172 type : number
173 value : 1
174 }
175 [1] : {
176 name : 1
177 type : number
178 value : 2
179 }
180 ] 170 ]
181 subtype : array 171 type : number
182 type : object 172 }
173 value : {
174 description : 2
175 overflow : false
176 properties : [
177 ]
178 type : number
183 } 179 }
184 } 180 }
185 ] 181 ]
186 182
187 expression: (new Set([[1,2]])).entries() 183 expression: (new Set([[1,2]])).entries()
188 { 184 {
189 name : [[IteratorHasMore]] 185 name : [[IteratorHasMore]]
190 type : boolean 186 type : boolean
191 value : true 187 value : true
192 } 188 }
193 { 189 {
194 name : [[IteratorIndex]] 190 name : [[IteratorIndex]]
195 type : number 191 type : number
196 value : 0 192 value : 0
197 } 193 }
198 { 194 {
199 name : [[IteratorKind]] 195 name : [[IteratorKind]]
200 type : string 196 type : string
201 value : entries 197 value : entries
202 } 198 }
203 [[Entries]]: 199 [[Entries]]:
204 [ 200 [
205 [0] : { 201 [0] : {
206 value : { 202 value : {
207 description : Array(2) 203 description : Array(2)
208 overflow : false 204 overflow : false
209 properties : [ 205 properties : [
210 [0] : { 206 [0] : {
211 name : 0 207 name : 0
212 subtype : array 208 type : number
213 type : object 209 value : 1
214 value : Array(2)
215 } 210 }
216 [1] : { 211 [1] : {
217 name : 1 212 name : 1
218 subtype : array 213 type : number
219 type : object 214 value : 2
220 value : Array(2)
221 } 215 }
222 ] 216 ]
223 subtype : array 217 subtype : array
224 type : object 218 type : object
225 } 219 }
226 } 220 }
227 ] 221 ]
228 222
229 223
230 Running test: noPreviewForFunctionObject 224 Running test: noPreviewForFunctionObject
(...skipping 14 matching lines...) Expand all
245 expression: [1,2,3] 239 expression: [1,2,3]
246 240
247 expression: /123/ 241 expression: /123/
248 242
249 expression: ({}) 243 expression: ({})
250 244
251 245
252 Running test: overridenArrayGetter 246 Running test: overridenArrayGetter
253 expression: Promise.resolve(42) 247 expression: Promise.resolve(42)
254 248
OLDNEW
« no previous file with comments | « src/runtime/runtime-collections.cc ('k') | test/inspector/runtime/internal-properties.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698